@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
13 lines (12 loc) • 469 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 InputWrapperContext: import("react").Context<InputWrapperContextValue>;
export {};