import type { IExecuteFunctions } from 'n8n-workflow';
import type { Command } from 'overkiz-api';
export declare const lightsCommands: {
    DimmerLight: {
        commands: {
            value: string;
            name: string;
            commands: (executionCtx: IExecuteFunctions) => Command[];
        }[];
    };
    DimmerHueSatOrCTLight: {
        commands: {
            value: string;
            name: string;
            commands: (executionCtx: IExecuteFunctions) => Command[];
        }[];
    };
    DimmerColorTemperatureLight: {
        commands: {
            value: string;
            name: string;
            commands: (executionCtx: IExecuteFunctions) => Command[];
        }[];
    };
};
