@mantine/core
Version: 
React components library focused on usability, accessibility and developer experience
16 lines (15 loc) • 621 B
TypeScript
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: React.ReactNode;
}) => import("react/jsx-runtime").JSX.Element, useInputWrapperContext: () => InputWrapperContextValue | null;
export {};