import type { Subscriber } from './Subscriber'; /** * * @export * @interface SubscriberListResponse */ export interface SubscriberListResponse { /** * An array containing the actual response objects. * @type {Array} * @memberof SubscriberListResponse */ readonly data?: Array; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof SubscriberListResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof SubscriberListResponse */ readonly limit?: number; } /** * Check if a given object implements the SubscriberListResponse interface. */ export declare function instanceOfSubscriberListResponse(value: object): value is SubscriberListResponse; export declare function SubscriberListResponseFromJSON(json: any): SubscriberListResponse; export declare function SubscriberListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubscriberListResponse; export declare function SubscriberListResponseToJSON(json: any): SubscriberListResponse; export declare function SubscriberListResponseToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;