import type { Customer, RenderExtensionPoint } from '@shopify/checkout-ui-extensions'; /** * Returns the current `Customer`. * * The value is `undefined` if the buyer isn't a known customer for this shop or if they haven't logged in yet. */ export declare function useCustomer(): Customer | undefined; /** * Returns the email address of the buyer that is interacting with the cart. * The value is `undefined` if the app does not have access to customer data. */ export declare function useEmail(): string | undefined; /** * Returns the phone number of the buyer that is interacting with the cart. * The value is `undefined` if the app does not have access to customer data. */ export declare function usePhone(): string | undefined; //# sourceMappingURL=buyer-identity.d.ts.map