/**
 * Pagination information.
 */
export type Paging = {
    /**
     * Number of results in the current page.
     */
    size: number;
    /**
     * The remaining number of objects that can be read in ensuing calls to this method.
     */
    remaining_count: number;
    /**
     * An opaque string you should provide to get the next page.
     */
    cursor: string;
};
//# sourceMappingURL=Paging.d.ts.map