/**
 * 2024-11-04:  Copied from PhotoFormWebpart
 * Sample functions generated by ChatGPT for handling various types of file.
 *  2024-11-03:  Currently not used or tested.
 *
 */
export interface IClipboardHandlerOptions {
    onImageData?: (data: string) => void;
    onExcelData?: (data: ArrayBuffer) => void;
    onTextData?: (data: string) => void;
    onPowerPointData?: (data: ArrayBuffer) => void;
}
export declare const handlePaste: (e: ClipboardEvent, options: IClipboardHandlerOptions) => void;
//# sourceMappingURL=handlePasteFiles.d.ts.map