type SetClipboard = (data: string, type?: string) => void;
declare const setClipboard: SetClipboard;
declare const getClipboard: () => {
    data: string;
    type: string;
} | undefined;
export { setClipboard as GM_setClipboard, getClipboard, type SetClipboard };
