import type { InlineErrorV2 } from '../errors.types'; export declare type MetaV2 = { meta: M; errors?: InlineErrorV2[]; }; export declare type DataV2 = { data: D; errors?: InlineErrorV2[]; }; export declare type IncludeV2 = { includes?: I; errors?: InlineErrorV2[]; }; export declare type DataAndMetaV2 = { data: D; meta: M; errors?: InlineErrorV2[]; }; export declare type DataAndIncludeV2 = { data: D; includes?: I; errors?: InlineErrorV2[]; }; export declare type DataMetaAndIncludeV2 = { data: D; meta: M; includes?: I; errors?: InlineErrorV2[]; }; export interface SentMeta { /** The time when the request body was returned. */ sent: string; } export interface PaginableCountMetaV2 { result_count: number; next_token?: string; previous_token?: string; }