import { ReactNode } from 'react';
interface WizardSectionProps {
    id: string;
    title: string;
    description?: string;
    children: ReactNode;
}
declare const WizardSection: ({ id, title, description, children, }: WizardSectionProps) => import("react/jsx-runtime").JSX.Element;
export default WizardSection;
