import { RecordWithRelations } from '../models';
export declare class RecordBuilder {
    private record;
    private parameters;
    constructor(record: RecordWithRelations);
    addParameter(paramName: string, paramValue: string): void;
    private getValueParameter;
    private getFillSize;
    private getValue;
    private isValid;
    build(): string;
}
