type DragHandelsProps = { columns: number; rows: number; }; /** * Renders a set of horizontal drag handles for resizing rows. * * @param props - Props containing the number of items (rows). * @returns An array of `DragHandel` components. */ export declare function RowDragHandlers({ columns, rows }: DragHandelsProps): import("react").JSX.Element[]; /** * Renders a set of vertical drag handles for resizing columns. * * @param props - Props containing the number of items (columns). * @returns An array of `DragHandel` components. */ export declare function ColDragHandlers({ rows, columns }: DragHandelsProps): import("react").JSX.Element[]; type HiddenGridAreasProps = { columns: number; rows: number; }; /** * Renders hidden grid areas to maintain the grid structure and allow querying for specific cells. * These elements are used for size calculations and to ensure the grid layout persists. * * @param props - Props containing the number of columns and rows. * @returns An array of `div` elements representing grid cells. */ export declare function HiddenGridAreas({ columns, rows }: HiddenGridAreasProps): import("react").JSX.Element[]; export {};