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