export declare class BaseExposeBuilder {
    contentKey: string;
    culture: string;
    segment: string;
    withContentKey(contentKey: string): this;
    withCulture(culture: string): this;
    withSegment(segment: string): this;
    getValue(): {
        contentKey: string;
        culture: string | null;
        segment: string | null;
    };
}
