import { IEmbed } from '../';
export declare type ExporterType = 'discordjs';
export declare const generateExport: (exporter: ExporterType, data: IEmbed) => {
    title: any;
    type: string;
    description: any;
    url: any;
    timestamp: string;
    color: number;
    footer: {
        text: string;
        icon_url: string;
    };
    image: {
        url: string;
        height: number;
        width: number;
    };
    thumbnail: {
        url: string;
        height: number;
        width: number;
    };
    author: {
        name: string;
        url: string;
        icon_url: string;
    };
    fields: import("../").IField[];
};
export declare const copyToClipBoard: (str: string, callback?: () => void) => Promise<void>;
