export declare class FetchResult { /** * The number of rows returned by your query, prior to pagination. */ "@recordsetCount": number; /** * The paginated and filtered list of records matching the parameters you supplied. */ value: T[]; /** * The link to the next page of results */ nextLink?: string; } export declare function createFetchResultClass(Model: { new (): T; }): { new (): FetchResult; };