import React, { FC } from "react"; import { TileItem } from ".."; export interface VerticalTileGridProps { /** Label/title above the grid of tiles */ title?: string; /** Array of TileItems that are looped over */ items: TileItem[]; /** Displays two `@material-ui/labs/Skeleton` tiles when true */ loading?: boolean; /** Called with each TileItem when the tile is clicked */ onClick?: (item: any) => void; /** Like `children` but with a function. Render props! A function whos first argument is the result object and must return a ReactNode. Alternatively, just pass a react node. */ tileOrnament?: (item: TileItem) => React.ReactNode | React.ReactNode; } export declare const VerticalTileGrid: FC; //# sourceMappingURL=index.d.ts.map