import { ForwardedRef, PropsWithChildren } from 'react'; import { Props } from './tasty'; export interface ProviderProps extends Props { breakpoints?: number[]; insideForm?: boolean; isDisabled?: boolean; isReadOnly?: boolean; isRequired?: boolean; validationState?: string; router?: Function; ref?: JSX.Element; root?: ForwardedRef; } export declare type ProviderInsideProps = Omit; export declare const UIKitContext: import("react").Context; export declare function Provider(allProps: PropsWithChildren): JSX.Element; export declare function useProviderProps(props: T): T;