UNPKG

@base-ui-components/react

Version:

Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.

12 lines (11 loc) 328 B
export declare function useField(params: useField.Parameters): void; declare namespace useField { interface Parameters { value: unknown; getValue?: () => unknown; id: string | undefined; commitValidation: (value: unknown) => void; controlRef: React.RefObject<any>; } } export {};