import { IrrelevantEntitiesResponse } from '..';
import { PolarisWarning } from './polaris-warning';
export interface PolarisExtensions {
    globalDataVersion: number;
    irrelevantEntities?: IrrelevantEntitiesResponse;
    warnings?: PolarisWarning[];
    totalCount?: number;
    snapResponse?: {
        snapshotMetadataId: string;
        pagesIds: string[];
    };
    prefetchBuffer?: any[];
}
