export interface FlowbiteStateColors { info: string; failure: string; success: string; warning: string; } import { FieldAtom } from "form-atoms"; export type InputColors = (keyof FlowbiteStateColors)[]; export type FlowbiteStateColor = keyof FlowbiteStateColors; export declare const useFieldError: (field: FieldAtom, colors?: InputColors) => { color: keyof FlowbiteStateColors | undefined; error: string | undefined; errors: string[]; };