import { I_Customer } from '../../backend/responses/schemas';
export type T_DefaultCustomer = Pick<I_Customer, '_id' | 'first_name' | 'phone'> & {
    last_name: string;
    country_code: string;
    email?: string;
};
//# sourceMappingURL=index.d.ts.map