import { Model } from './model'; export declare type ApiClientResponse = T | PaginatedResponse | Promise; export declare type PaginatedResponse = { results: T[]; totalResultsCount: number; }; export interface ApiClientOptions { preventAutoCase: boolean; } //# sourceMappingURL=api-client.d.ts.map