type CustomerInfo = {
    id: string;
    name: string;
    is_active: boolean;
};
export type { CustomerInfo };
