import { ResourceConfig, ConcreteResourceInstance, Resource } from '../resource'; import { CustomerInstance } from './Customers'; import { AttachmentInstance } from './Attachments'; import { MarketInstance } from './Markets'; export interface CustomerGroupAttributes { name: string; } export interface CustomerGroupRelationships { customers: CustomerInstance[]; attachments: AttachmentInstance[]; markets: MarketInstance[]; } export declare type CustomerGroupInstance = ConcreteResourceInstance; export declare const CustomerGroupsConfig: ResourceConfig; export declare const CustomerGroups: Resource; //# sourceMappingURL=CustomerGroups.d.ts.map