/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; /** Object used for returning lists of objects with pagination */ export interface PagingResponse { /** Total number of pages */ total?: number | null; /** Previous page */ previous?: string | null; /** Next page */ next?: string | null; } export declare const pagingResponseSchema: Schema;