import { ReactNode } from 'react';
interface DemoSectionProps {
    id: string;
    title: string;
    description?: string;
    children: ReactNode;
    className?: string;
}
declare const DemoSection: ({ id, title, description, children, className }: DemoSectionProps) => import("react/jsx-runtime").JSX.Element;
export default DemoSection;
//# sourceMappingURL=index.d.ts.map