declare namespace _default {
    namespace demo {
        let view: string;
        let source: string;
    }
    let examples: ({
        title: string;
        demo: string;
        beforeDemo?: undefined;
        highlightProps?: undefined;
    } | {
        title: string;
        beforeDemo: string[];
        demo: string;
        highlightProps?: undefined;
    } | {
        title: string;
        beforeDemo: string[];
        demo: {
            view: string;
            source: string[];
            sectionPrelude?: undefined;
            sectionPostlude?: undefined;
            codeConfig?: undefined;
        };
        highlightProps?: undefined;
    } | {
        title: string;
        highlightProps: string[];
        beforeDemo: string;
        demo: ({
            view: string;
            source: string;
            anchors?: undefined;
        } | {
            view: string;
            anchors: boolean;
            source: string;
        })[];
    } | {
        title: string;
        highlightProps: string[];
        demo: {
            view: string;
            sectionPrelude: string;
            sectionPostlude: {
                view: string;
                href: string;
                text: string;
            };
            source: string;
            codeConfig?: undefined;
        };
        beforeDemo?: undefined;
    } | {
        title: string;
        highlightProps: string[];
        beforeDemo: string[];
        demo: {
            view: string;
            codeConfig: {
                prelude: {
                    view: string;
                    content: string[];
                };
                postlude: string;
                actionButtons: {
                    view: string;
                    text: string;
                    onClick: any;
                }[];
            };
            source: string;
            sectionPrelude?: undefined;
            sectionPostlude?: undefined;
        };
    } | {
        title: string;
        demo: {
            view: string;
            source: string[];
            sectionPrelude?: undefined;
            sectionPostlude?: undefined;
            codeConfig?: undefined;
        };
        beforeDemo?: undefined;
        highlightProps?: undefined;
    })[];
}
export default _default;
