export declare const generateNftImage: ({ name, title, icon, }: {
    name: string;
    title: string;
    icon?: Blob;
}) => Promise<Blob>;
