export declare function resolveExecutable(command: string): string; export declare function resolveOptionalExecutable(command: string): string; export declare function packageRootDir(): string; export declare function expandHome(filePath: Value): Value extends string ? string : Value; export declare function positiveMilliseconds(value: unknown, optionName: string): number; export declare function positiveMinutes(value: unknown, optionName: string): number; export declare function required(value: Value | null | undefined, message: string): Value; export declare function parseJsonOption(value: unknown, optionName: string): unknown; export declare function canonicalWorkspace(value: unknown): string; export declare function matchesConfiguredWorkspace(configuredWorkspace: unknown, candidateWorkspace: unknown): boolean; export declare function assertConfiguredWorkspace(configuredWorkspace: unknown, candidateWorkspace: unknown, subject: string): void; export declare function cleanProcessText(text: unknown): string | undefined; export declare function writeCliJson(value: unknown): void; export declare function redactCliOutput(value: unknown): unknown;