export declare enum CommandDeliveryType {
    DEFAULT = "Default",
    SMS = "SMS"
}
export interface DeliveryType {
    name: string;
    default?: boolean;
}
export interface Command {
    id: string;
    name: string;
    text: string;
    deliveryTypes: string[];
    command: string;
    category: string;
}
//# sourceMappingURL=device-shell.model.d.ts.map