import type { Paging } from './Paging';
import type { TokenData } from './TokenData';
export type TokenDataPage = {
    /**
     * A page of tokens.
     */
    results: Array<TokenData>;
    paging: Paging;
};
//# sourceMappingURL=TokenDataPage.d.ts.map