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