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