declare namespace _default {
    namespace demo {
        let view: string;
        namespace data {
            let text: string;
            let match: RegExp;
        }
    }
    let examples: ({
        title: string;
        demo: {
            view: string;
            data: {
                text: string;
                match: string;
                href?: undefined;
            };
            content?: undefined;
            cols?: undefined;
        };
    } | {
        title: string;
        demo: {
            view: string;
            data: {
                href: string;
                text?: undefined;
                match?: undefined;
            };
            content: string;
            cols?: undefined;
        };
    } | {
        title: string;
        demo: {
            view: string;
            cols: {
                header: string;
                content: string;
            }[];
            data: ({
                match?: undefined;
                ignoreCase?: undefined;
            } | {
                match: string;
                ignoreCase?: undefined;
            } | {
                match: string;
                ignoreCase: boolean;
            } | {
                match: RegExp;
                ignoreCase?: undefined;
            } | {
                match: RegExp;
                ignoreCase: boolean;
            } | {
                text: string;
            } | null)[];
            content?: undefined;
        };
    })[];
}
export default _default;
