export interface CreateSlideArgs {
    deckPath: string;
    slideType: 'title' | 'content' | 'two-column' | 'image' | 'chart' | 'interactive' | 'custom';
    content: {
        title?: string;
        subtitle?: string;
        body?: string;
        leftColumn?: string;
        rightColumn?: string;
        image?: string;
        chart?: string;
    };
    layout?: string;
    position?: number;
}
export declare function createSlide(args: CreateSlideArgs): Promise<{
    content: {
        type: string;
        text: string;
    }[];
}>;
