export type ImportExample = Record[] | string; export interface ImportCsvProps { resource?: string; size?: number; example?: ImportExample; onFinish?: () => void; refresh?: string; } export declare const ImportCsv: ({ resource, example, size, onFinish, refresh, }: ImportCsvProps) => import("react/jsx-runtime").JSX.Element;