import { d as CustomerProduct, e as CustomerFeature, f as CustomerInvoice } from './cusTypes-Cf-s9PYP.js';

interface DeleteEntityResult {
    success: boolean;
}
interface Entity {
    id: string;
    name: string;
    customer_id: string;
    created_at: number;
    env: string;
    products: CustomerProduct[];
    features: Record<string, CustomerFeature>;
    invoices?: CustomerInvoice[];
}

export type { DeleteEntityResult as D, Entity as E };
