import React from 'react'; interface Column { field: string; headerName: string; width: number; sortable: boolean; } interface Row { id: number; [key: string]: any; } interface TemplatesProps { columns?: Column[]; setColumns?: any; rows?: Row[]; setRows?: any; initMode?: 'edit' | 'clipboard'; dataGridPageSize?: number; dataGridHeight?: string | number; } declare const TemplatesFunctionalComponentsDataGridWithClipboardOption: React.FC; export default TemplatesFunctionalComponentsDataGridWithClipboardOption; //# sourceMappingURL=DataGridWithClipboard.code.except.d.ts.map