import type * as Pinnacle from "../index.mjs"; export interface AudienceWithPagination { /** Audience public ID. This identifier is a string that always begins with the prefix `aud_`, for example: `aud_abc123`. */ id: string; /** Audience name. */ name: string; /** Audience description. */ description: string; /** Array of contact objects (paginated). */ contacts: Pinnacle.Contact[]; /** Total number of contacts in audience. */ contactCount: number; pagination: Pinnacle.Pagination; }