/** * An array of objects representing various banks in Iran. Each object contains the name of the bank and its ID. * @type {Array<{name: string, id: number}>} */ export declare const banks: { name: string; id: number; }[];