import * as DBus from "dbus-next";
/**
 * Service: org.bluez
 * ObjectPath: /org/bluez
 * Interface: org.bluez.ProfileManager1
 */
export declare class OrgBluezProfileManager1 {
    static readonly DbusInterfaceName = "org.bluez.ProfileManager1";
    dbusObject: DBus.ProxyObject;
    thisDBusInterface: DBus.ClientInterface;
    static Connect(bus: DBus.MessageBus, objectPath?: string, xml?: string): Promise<OrgBluezProfileManager1>;
    constructor(dbusObject: DBus.ProxyObject);
    /***** Methods *****/
    RegisterProfile(profile: DBus.ObjectPath, UUID: string, options: {
        [key: string]: any;
    }): Promise<void>;
    UnregisterProfile(profile: DBus.ObjectPath): Promise<void>;
}
