import type { WithChildren } from '../types/with-children.js'; /** * Provider that can be reused in components for storing the focus context props. * Loosely inspired by [what-input-js](https://github.com/ten1seven/what-input/blob/main/src/scripts/what-input.js). * @internal */ export declare const FocusProvider: { ({ children }: WithChildren): import("react/jsx-runtime").JSX.Element; displayName: string; };