declare function _default(view: any, group: any): {
    demo: string;
    examples: ({
        title: string;
        view: any;
        demo?: undefined;
    } | {
        title: string;
        demo: {
            view: any;
            content: string[];
        };
        view?: undefined;
    } | {
        title: string;
        demo: ({
            view: any;
            anchor: string;
            content: string;
        } | {
            view: any;
            anchor: boolean;
            content: string;
        })[];
        view?: undefined;
    })[];
};
export default _default;
