import { BlockListValueBuilder } from "./blockListValueBuilder";
export declare class BlockListLayoutBuilder {
    parentBuilder: BlockListValueBuilder;
    contentKey: string;
    constructor(parentBuilder: BlockListValueBuilder);
    withContentKey(contentKey: string): this;
    done(): BlockListValueBuilder;
    getValue(): {
        contentKey: string;
    };
}
