export declare const generate: ({ android, ios, workingPath, logoPath, darkLogoPath, backgroundColor, darkBackgroundColor, logoWidth, flavor, assetsPath, }: {
    android: {
        sourceDir: string;
        appName: string;
    } | null;
    ios: {
        projectPath: string;
    } | null;
    workingPath: string;
    logoPath: string;
    darkLogoPath?: string | undefined;
    assetsPath?: string | undefined;
    backgroundColor: string;
    darkBackgroundColor?: string | undefined;
    flavor: string;
    logoWidth: number;
}) => Promise<void>;
//# sourceMappingURL=generate.d.ts.map