/// <reference types="react" />
declare const CnLayoutPagePrototype: {
    title: string;
    componentName: string;
    icon: import("react").JSX.Element;
    docUrl: string;
    isContainer: boolean;
    disableBehaviors: string;
    initialChildren: {
        componentName: string;
        props: {
            isCnLayoutContent: boolean;
        };
    }[];
    configure: ({
        name: string;
        title: string;
        initialValue: boolean;
        display: string;
        collapsed?: undefined;
        setter?: undefined;
    } | {
        name: string;
        title: string;
        initialValue: {
            type: string;
            value: string;
        };
        display: string;
        collapsed?: undefined;
        setter?: undefined;
    } | {
        title: string;
        display: string;
        collapsed: boolean;
        setter: {
            componentName: string;
            props: {
                config: {
                    items: any;
                };
            };
        };
        name?: undefined;
        initialValue?: undefined;
    })[];
};
export { CnLayoutPagePrototype };
