import { type FunctionComponent, type PropsWithChildren } from "react"; import { type FlexStyle, type ViewProps } from "react-native"; import { type UseDraggableGridOptions } from "../hooks/useDraggableGrid"; export type DraggableGridProps = Pick & Pick & { direction?: FlexStyle["flexDirection"]; size: number; gap?: number; }; export declare const DraggableGrid: FunctionComponent>;