import { z } from 'zod'; export declare const accountTypeSchema: z.ZodEnum<{ SAVER: "SAVER"; TRANSACTIONAL: "TRANSACTIONAL"; HOME_LOAN: "HOME_LOAN"; }>; export type AccountType = z.infer;