export interface CustomerInfo { customerId: string; } export interface CustomerRuntimeApi { getCustomerInfo: () => Promise; }