export interface ExportDeckArgs {
    deckPath: string;
    format: 'pdf' | 'html' | 'spa' | 'pptx';
    outputPath: string;
    options?: {
        withClicks?: boolean;
        range?: string;
        dark?: boolean;
    };
}
export declare function exportDeck(args: ExportDeckArgs): Promise<{
    content: {
        type: string;
        text: string;
    }[];
}>;
