import { Context } from '../context'; export declare function pasteHandler(ctx: Context, data: any, borderInfo?: any): void; export declare function pasteHandlerOfCutPaste(ctx: Context, copyRange: Context['luckysheet_copy_save']): void; export declare function pasteHandlerOfCopyPaste(ctx: Context, copyRange: Context['luckysheet_copy_save'], valuesOnly?: boolean): void; export declare function handleFormulaStringPaste(ctx: Context, formulaStr: string): void; export declare function parseAsLinkIfUrl(txtdata: string, ctx: Context): void; export declare function resizePastedCellsToContent(ctx: Context): void; export declare function shouldHandleNonTableHtml(html: string): boolean; export declare function convertAnyHtmlToTable(html: string): string;