import { Realm } from './Realm'; export declare class RealmCollection { private static readonly _List; static Has(scope: any): boolean; static Get(scope: any): Realm | undefined; static Set(scope: any, realm: Realm): void; static GetOrCreate(scope: any): Realm; static Remove(scope: any): boolean; }