export type PasteResult = false | Promise; interface PasteInterceptorPluginProps { onPaste?: (text: string) => PasteResult; } export declare const PasteInterceptorPlugin: (props: PasteInterceptorPluginProps) => null; export {};