declare namespace _default {
    namespace demo {
        let view: string;
        let name: string;
        let tabs: {
            value: string;
            text: string;
        }[];
        namespace content {
            let view_1: string;
            export { view_1 as view };
            let content_1: {
                when: string;
                content: string;
            }[];
            export { content_1 as content };
        }
    }
    let examples: ({
        title: string;
        demo: {
            view: string;
            name: string;
            tabs: ({
                value: string;
                text: string;
                active?: undefined;
                disabled?: undefined;
            } | {
                value: string;
                text: string;
                active: boolean;
                disabled?: undefined;
            } | {
                value: string;
                text: string;
                disabled: boolean;
                active?: undefined;
            })[];
            content: {
                view: string;
                content: {
                    when: string;
                    content: string;
                }[];
            };
        };
    } | {
        title: string;
        demo: {
            view: string;
            name: string;
            tabs: {
                value: string;
                text: string;
                onClick: () => void;
            }[];
            content: {
                view: string;
                content: {
                    when: string;
                    content: string;
                }[];
            };
        };
    })[];
}
export default _default;
