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;
