import { DocumentBlueprintsBuilder } from "./documentBlueprintsBuilder";
export declare class DocumentBlueprintsVariantBuilder {
    parentBuilder: DocumentBlueprintsBuilder;
    culture: string;
    segment: string;
    name: string;
    constructor(parentBuilder: DocumentBlueprintsBuilder);
    withCulture(culture: string): this;
    withSegment(segment: string): this;
    withName(name: string): this;
    done(): DocumentBlueprintsBuilder;
    build(): {
        culture: string | null;
        segment: string | null;
        name: string | null;
    };
}
