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