import { DataTransferType } from './DataTransferType';
export declare class FloomRequest {
    pipelineId: string;
    prompt: string;
    chatId: string | null;
    variables: Record<string, string> | null;
    dataTransfer: DataTransferType | null;
    constructor(pipelineId: string, prompt: string, chatId?: string | null, variables?: Record<string, string> | null, dataTransfer?: DataTransferType | null);
}
