import React from 'react'; import { Offset } from '../interfaces'; interface FocusOutlineProps { elementKey?: null | string | number | boolean; elementRef?: React.RefObject; offset?: Offset; } export default function FocusOutline({ elementKey, elementRef, offset }: FocusOutlineProps): JSX.Element; export {};