export declare class BaseContentDataValueBuilder {
    alias: string;
    culture: string;
    editorAlias: string;
    segment: string;
    value: string;
    withAlias(alias: string): this;
    withCulture(culture: string): this;
    withEditorAlias(editorAlias: string): this;
    withSegment(segment: string): this;
    withValue(value: string): this;
    getValue(): {
        alias: string;
        culture: string | null;
        editorAlias: string;
        segment: string | null;
        value: string;
    };
}
