import { type FocusIndicatorProps } from './FocusIndicator.types';
/**
* The component for display focus indicator.
*
* A focus indicator is displayed when the child component is focused.
* This component can only wrap one child component that can be focused.
*
* @example
* ```tsx
* // Standard outline (default) - for most components
*
*
*
*
* // Hide white border - for small elements like checkboxes
* // Note: May not be visible in containers with overflow:hidden in some browsers
*
*
*
*
* // Inside position - for adjacent elements like tabs
*
*
*
* ```
*/
export declare const FocusIndicator: ({ position, hideWhiteBorder, disableNestedFocus, children, }: FocusIndicatorProps) => import("react").ReactElement, string | import("react").JSXElementConstructor>;