import type { ICommand, ICommandResult } from '../../interfaces';
import type { HostSwitchFacade } from '../HostSwitchFacade';
export declare class DeleteProfileCommand implements ICommand {
    private facade;
    private profileName;
    private force;
    constructor(facade: HostSwitchFacade, profileName: string, force?: boolean);
    execute(): Promise<ICommandResult>;
}
//# sourceMappingURL=DeleteProfileCommand.d.ts.map