export interface NbconvertParams {
    args: string[];
    directory?: string;
    timeout?: number;
}
export declare function parseTo(args: string[]): {
    to: string;
    j: number;
};
export declare function parseSource(args: string[]): string;
