import { ExecutableName, ApplicationCheckInterface, ApplicationCheck, Parameter } from "./../index";
export interface ExecutableApplicationCheckInterface extends ApplicationCheckInterface {
    executables?: Array<ExecutableName>;
}
export declare class ExecutableApplicationCheck extends ApplicationCheck implements ExecutableApplicationCheckInterface, Parameter {
    executables?: Array<ExecutableName>;
    constructor(data: any);
    static getExecutablesDefault(): Array<ExecutableName>;
    static getExecutablesDescription(): string;
    static fromJson(data: any): ExecutableApplicationCheck;
    toJson(): any;
    clone(): ExecutableApplicationCheck;
}
