import { default as React } from 'react'; export interface FocusTrapProps { /** Children content */ children: React.ReactNode; /** Enable focus trap */ active?: boolean; /** Initial focus element selector */ initialFocus?: string; /** Return focus on deactivate */ returnFocus?: boolean; /** Additional className */ className?: string; } /** * FocusTrap Component * * Traps keyboard focus within a container. * Useful for modals, dialogs, and accessibility. * * @example * ```tsx * * * * * * * ``` * * @example * ```tsx * * * * ``` */ export declare const FocusTrap: React.FC; //# sourceMappingURL=focus-trap.d.ts.map