export declare const PULSE = "p"; export declare const TOGGLE = "t"; export declare const ON = "1"; export declare const OFF = "0"; export declare const X = "x"; export declare type COMMANDS = typeof ON | typeof OFF | typeof PULSE | typeof TOGGLE | typeof X; export declare type Mask = COMMANDS[]; export interface MaskServer { mask: string; } export interface Commands { [url: string]: T; } export interface CommandServer { data: T; url: string; }