import { type ChildrenProps } from "../../types/props"; interface AutoFocusOptions { /** * Focuses on the child element when this property is true. * @default true */ when?: boolean; } export interface AutoFocusProps extends ChildrenProps, React.HTMLAttributes, AutoFocusOptions { } export {}; //# sourceMappingURL=AutoFocus.types.d.ts.map