UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

16 lines (15 loc) 619 B
import { GetStylesApi } from '../../core'; import type { InputWrapperFactory } from './InputWrapper/InputWrapper'; interface InputWrapperContextValue { offsetTop: boolean; offsetBottom: boolean; describedBy: string | undefined; inputId: string | undefined; labelId: string | undefined; getStyles: GetStylesApi<InputWrapperFactory> | null; } export declare const InputWrapperProvider: ({ children, value }: { value: InputWrapperContextValue; children: import("react").ReactNode; }) => import("react").JSX.Element, useInputWrapperContext: () => InputWrapperContextValue | null; export {};