export declare class CustomerData {
    name: string;
    /**
     * Optional split name fields. `name` stays the single source of truth for
     * display/search (backward compatible); when these are provided the service
     * layer derives `name` from them.
     */
    firstName?: string;
    lastName?: string;
    email?: string;
    phoneNumber?: string;
}
