import { ExtensionSettings } from '../interfaces/extensionSettings.cjs'; /** * A method to return the path to the provided executable * @param name - String representing the name of the ansible executable * @param settings - The settings received from client * @returns Complete path of the ansible executable (string) */ declare function getAnsibleCommandExecPath(name: string, settings: ExtensionSettings): string; export { getAnsibleCommandExecPath };