import React from 'react'; import { type ElementProps } from '../../../../types'; export type FocusTrapProps = ElementProps<'div', React.PropsWithChildren<{ active?: boolean; asChild?: boolean; }>>; export declare const TrapFocus: React.ForwardRefExoticComponent, HTMLDivElement>, "ref">, "children">, "children" | "active" | "asChild"> & { active?: boolean | undefined; asChild?: boolean | undefined; } & { children?: React.ReactNode; } & React.RefAttributes>; //# sourceMappingURL=TrapFocus.d.ts.map