import { ComponentProps, ComponentType } from 'react'; import type { Button } from '../../components/Button'; export declare type Components = { Button: ComponentType>; }; export declare const useComponents: () => Components; export declare const ComponentsProvider: import("react").Provider;