import * as React from 'react'; export interface FolderGridListProps { children: React.ReactNode; title?: string | null; } export declare const FolderGridList: ({ title, children }: FolderGridListProps) => import("react/jsx-runtime").JSX.Element;