import { Dexie } from 'dexie'; export declare const getInvitesObservable: (x: Dexie) => import("./mapValueObservable").ObservableWithCurrentValue<{ accept(): Promise; reject(): Promise; id: string; userId?: string; email?: string; name?: string; invite?: boolean; invitedDate?: Date; invitedBy?: { name: string; email: string; userId: string; }; accepted?: Date; rejected?: Date; roles?: string[]; permissions?: import("dexie-cloud-common").DBPermissionSet; realmId: string; owner: string; $ts?: number; }[]>;