/**
 * Class Customer
 *
 * The customer class defines the customer details object.
 *
 * @see https://paytrail.github.io/api-documentation/#/?id=customer
 */
export declare class Customer {
    /**
     * The customer email.
     */
    email: string;
    /**
     * The customer first name.
     */
    firstName?: string;
    /**
     * The customer last name.
     */
    lastName?: string;
    /**
     * The customer phone.
     */
    phone?: string;
    /**
     * The customer VAT id.
     */
    vatId?: string;
    /**
     * The Company name.
     */
    companyName?: string;
}
