import { MeldOptions } from './meld';
export interface OneshotcatOptions extends MeldOptions {
    model?: string;
    system?: string;
    systemFile?: string;
}
export declare class Oneshotcat {
    private options;
    constructor(options: OneshotcatOptions);
    process(): Promise<Array<{
        response: string;
    }>>;
}
