import { UnknownProperties } from '../core'; /** @deprecated */ export interface IWithAutoFocusEnhanceProps extends WithAutoFocusEnhanceProps, UnknownProperties { } export type WithAutoFocusEnhanceProps = { /** Native autofocus, but with support for working inside modals, you can also transmit the number of ms before focus is triggered */ autoFocus?: boolean | number; }; declare function autoFocusEnhance(): (props: any) => any; export default autoFocusEnhance;