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