import { ServiceClientBase } from "./ServiceClientBase";
import { FindRealmResponse } from "../shared/FindRealmResponse";
import { RealmType } from "../realms/RealmType";
export declare class RealmDirectoryClient extends ServiceClientBase {
    protected serviceName: string;
    protected baseRoute: string;
    findByPath(params: {
        realmPath: string;
        shouldCreate: boolean;
        token?: string;
        realmType?: RealmType;
        ownerId?: string;
    }): Promise<FindRealmResponse>;
    delete(path: string): Promise<any>;
}
