import type { PropsWithChildren } from "react"; import React from "react"; import type { ButtonSize } from "./Button.types"; interface ButtonContextProps { size: ButtonSize; } export declare function ButtonProvider({ children, size, }: PropsWithChildren<{ readonly size?: ButtonSize; }>): React.JSX.Element; export declare function useButtonContext(): ButtonContextProps; export {};