import { CredentialInformation } from 'n8n-workflow';
export declare class ShellUtils {
    sudoCommand(command: string, workingDirectory: string, password: CredentialInformation | undefined): Promise<string>;
    command(command: string, workingDirectory: string): Promise<string>;
    resolveHomeFolder(path: string): Promise<string>;
}
