import { type StyleProp, type ViewStyle } from 'react-native'; import type { PresetView, RenderTile } from './preset-book-menu.types'; interface PresetGridProps { readonly presets: ReadonlyArray; readonly value: string | null; readonly onSelect: (id: string | null) => void; readonly disabled?: boolean | undefined; /** Override the tile rendering (BYO tile, e.g. to add a badge). */ readonly renderTile?: RenderTile | undefined; /** NativeWind class for the grid container; resolved via the `./nativewind` interop. */ readonly className?: string | undefined; readonly style?: StyleProp | undefined; } export declare function PresetGrid(props: PresetGridProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=preset-grid.d.ts.map