import { SSPType } from "../types";
export interface Command {
    value: number;
    sequence?: number;
}
export interface DeviceCommands {
    [commandName: string]: Command;
}
export declare type Commands = {
    [deviceName in SSPType]: DeviceCommands;
};
declare const commands: Commands;
export default commands;
