import type { ReactNode } from 'react'; import type { InputFormState } from '../../utils/form'; export interface InputFeedbackProps { state?: InputFormState; children: NonNullable; } /** * Renders an helper sentence below an input. * * @deprecated use InputFeedback from kitt-universal instead */ export declare function InputFeedback({ state, children }: InputFeedbackProps): ReactNode; //# sourceMappingURL=index.d.ts.map