interface Props { height: number; x: number; y: number; } declare const Focus: ({ height, x, y }: Props) => JSX.Element; export default Focus;