@focuson/form_components
Version:
Components that can be used by @focuson/forms
8 lines (7 loc) • 333 B
TypeScript
export declare const setEdited: (e: HTMLElement | undefined, data: string | undefined) => void;
export interface CustomErrorProps {
id: string;
validationMessage?: string;
error?: boolean;
}
export declare function CustomError({ id, validationMessage, error }: CustomErrorProps): import("react/jsx-runtime").JSX.Element;