import type { ADFNode, ADFCommonNodeSpec, ADFNodeContentZeroOrMoreSpec, ADFNodeContentRangeSpec } from '@atlaskit/adf-schema-generator';
export declare const layoutSection: ADFNode<[
    string,
    'with_single_column',
    'full'
], ADFCommonNodeSpec & {
    attrs: {
        columnRuleStyle: {
            default: null;
            optional: true;
            type: 'enum';
            values: string[];
        };
        localId: {
            default: null;
            optional: true;
            type: 'string';
        };
    };
    content: (ADFNodeContentZeroOrMoreSpec | ADFNodeContentRangeSpec)[];
    marks: any[];
    stage0: true;
} & {
    content: ADFNodeContentRangeSpec[];
    marks: any[];
}>;
