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