import type { AddressLegacy } from "./address-legacy";
/**
 * Personal Details
 *
 * Personal details for the customer.
 */
export type PersonalDetails = {
    /**
     * First name of the customer.
     */
    first_name?: string;
    /**
     * Last name of the customer.
     */
    last_name?: string;
    /**
     * Email address of the customer.
     */
    email?: string;
    /**
     * Phone number of the customer.
     */
    phone?: string;
    /**
     * Date of birth of the customer.
     */
    birth_date?: string;
    /**
     * An identification number user for tax purposes (e.g. CPF)
     */
    tax_id?: string;
    address?: AddressLegacy;
};
//# sourceMappingURL=personal-details.d.ts.map