import type { Got } from 'got';
import type { Controller, GenericSwitch } from '../types/device/Controller.ts';
declare const _default: (got: Got) => {
    list(): Promise<Controller[]>;
    get({ id }: {
        id: string;
    }): Promise<Controller>;
    setControlMode({ id, controlMode, }: {
        id: string;
        controlMode: GenericSwitch["attributes"]["controlMode"];
    }): Promise<void>;
};
export default _default;
