import type { Got } from 'got';
import type { LightSensor } from '../types/device/LightSensor.ts';
declare const _default: (got: Got) => {
    list(): Promise<LightSensor[]>;
    get({ id }: {
        id: string;
    }): Promise<LightSensor>;
};
export default _default;
