import React from "react"; export declare const DemoSection: React.FC<{ children: React.ReactNode; description?: string; title?: string; }>; export interface DemoGroupProps { children: JSX.Element | JSX.Element[]; title: string; description?: string; width?: number; } export declare const DemoGroup: React.FC;