import { RealmType } from "../realms/RealmType";
export interface FindRealmResponse {
    path: string;
    exists: boolean;
    realmType: RealmType;
    syncLabel: string;
}
