import { PipLayoutProps } from './Pip';
export type PipLayoutGridProps = PipLayoutProps & {
    /**
     * The number of participants to display per page.
     * @default 9
     */
    groupSize?: number;
    /**
     * Whether to show pagination arrows when there are multiple pages.
     * @default true
     */
    pageArrowsVisible?: boolean;
};
/**
 * A grid-based PIP layout with pagination support.
 * Use this when you need a more structured grid view in PIP mode.
 */
export declare const Grid: {
    (props: PipLayoutGridProps): import("react/jsx-runtime").JSX.Element | null;
    displayName: string;
};
