import * as React from 'react'; export interface AutoFocusZoneProps extends React.HTMLAttributes { /** @docSiteIgnore */ as?: React.ReactType; /** * Indicates the selector for first focusable item. By default, the first tabbable element will get focus. */ firstFocusableSelector?: string | (() => string); }