import * as React from 'react'; import type { InputProps } from '../input/Input'; export type FormCustomContextType = { appearance?: InputProps['appearance']; theme?: InputProps['theme']; } | undefined; export declare const FormCustomContext: React.Context; export declare const useFormCustomContext: () => FormCustomContextType;