import { DocumentBlueprintsBuilder } from "./documentBlueprintsBuilder";
export declare class DocumentBlueprintsValueBuilder {
    parentBuilder: DocumentBlueprintsBuilder;
    culture: string;
    segment: string;
    alias: string;
    value: string;
    constructor(parentBuilder: DocumentBlueprintsBuilder);
    withCulture(culture: string): this;
    withSegment(segment: string): this;
    withAlias(alias: string): this;
    withValue(value: string): this;
    done(): DocumentBlueprintsBuilder;
    build(): {
        culture: string | null;
        segment: string | null;
        alias: string | null;
        value: string | null;
    };
}
