export interface IAutomation {
    id: string;
    name: string;
    description: string;
    enabled: boolean;
}
export declare class Automation {
    id: string;
    name: string;
    description: string;
    enabled: boolean;
    constructor(automation: IAutomation);
}
