import React from 'react'; import type { ActionSheetProps } from './ActionSheet'; type ActionSheetGridProps = Pick & { onSelected?: (idx: number) => void; count?: number; }; export declare function ActionSheetGrid(props: ActionSheetGridProps): React.JSX.Element; export {};