import { FC } from "react"; import { TextFieldProps } from "@mui/material"; type iIban = Omit & { name: string; label?: string; helperText?: string; required?: boolean | string; value?: string | number; errorMessages?: { required?: string; pattern?: string; }; }; export declare const Iban: FC; export {};