import * as React from 'react'; import * as PropTypes from 'prop-types'; import { AutoFocusZoneProps } from './AutoFocusZone.types'; /** AutoFocusZone is used to focus inner element on mount. */ export declare class AutoFocusZone extends React.Component { root: React.RefObject; static propTypes: { as: PropTypes.Requireable; firstFocusableSelector: PropTypes.Requireable any)>; }; static handledProps: any; componentDidMount(): void; render(): JSX.Element; findElementAndFocusAsync: () => void; }