export interface CreditCardApplication {
  name: string;
  email: string;
  phone: string;
  nationality: string;
  salary: number;
  agree: boolean;
}