import { StoreType, AreaType, PointType } from '../types'; import { UserSheet } from '@gridsheet/core'; export declare const clip: (store: StoreType) => AreaType; export type SheetCSVProps = { getter?: (sheet: UserSheet, point: PointType) => string; filteredRowsIncluded?: boolean; trailingEmptyRowsOmitted?: boolean; separator?: string; newline?: string; }; export declare const sheet2csv: (sheet: UserSheet, { getter, filteredRowsIncluded, trailingEmptyRowsOmitted, separator, newline, }?: SheetCSVProps) => string; export type SheetHTMLProps = { getter?: (sheet: UserSheet, point: PointType) => string; filteredRowsIncluded?: boolean; trailingEmptyRowsOmitted?: boolean; }; export declare const sheet2html: (sheet: UserSheet, { getter, filteredRowsIncluded, trailingEmptyRowsOmitted, }?: SheetHTMLProps) => string; //# sourceMappingURL=clipboard.d.ts.map