export interface OneshotcatOptions {
    inputFile: string;
    model?: string;
    system?: string;
    systemFile?: string;
}
export declare class Oneshotcat {
    private options;
    constructor(options: OneshotcatOptions);
    process(): Promise<Array<{
        variation?: any;
        systemPrompt: string;
        response: string;
    }>>;
}
