import { ExecutableStatusState, Parameter } from "./../index";
export interface ExecutableStatusInterface {
    enabled?: boolean;
    status?: ExecutableStatusState;
}
export declare class ExecutableStatus implements ExecutableStatusInterface, Parameter {
    enabled?: boolean;
    status?: ExecutableStatusState;
    constructor(data: any);
    static getEnabledDefault(): boolean;
    static getEnabledDescription(): string;
    static getStatusDefault(): ExecutableStatusState;
    static getStatusDescription(): string;
    static fromJson(data: any): ExecutableStatus;
    toJson(): any;
    clone(): ExecutableStatus;
}
