export interface CreateDeckArgs {
    title: string;
    template?: string;
    theme?: string;
    outputPath: string;
    options?: {
        includeInteractiveComponents?: boolean;
        pythonIntegration?: boolean;
        customCSS?: string;
    };
}
export declare function createDeck(args: CreateDeckArgs): Promise<{
    content: {
        type: string;
        text: string;
    }[];
}>;
