epn-ui
Version:
Дизайн система кабинета ВМ
14 lines (13 loc) • 388 B
TypeScript
import React from 'react';
import { TableFormatData } from '../../types';
interface DropdownItem {
key: string;
value: string;
}
export interface ISaveTableToFileProps {
formats?: DropdownItem[];
onSave: (key: TableFormatData) => void;
locale: 'ru' | 'en';
}
declare const SaveTableToFile: React.FC<ISaveTableToFileProps>;
export default SaveTableToFile;