export interface ApplyThemeArgs {
    deckPath: string;
    theme: string;
    customizations?: {
        primaryColor?: string;
        secondaryColor?: string;
        fontFamily?: string;
        customCSS?: string;
    };
}
export declare function applyTheme(args: ApplyThemeArgs): Promise<{
    content: {
        type: string;
        text: string;
    }[];
}>;
