import type { LilypondVersion } from "../types/lilypondVersion.js"; export declare const DEFAULT_LILYPOND_VERSION: LilypondVersion; export interface ResolveLilypondBinaryOptions { version?: LilypondVersion; autoInstall: boolean; log?: (message: string) => void; warn?: (message: string) => void; } export declare function resolveLilypondBinary({ version, autoInstall, log, warn, }: ResolveLilypondBinaryOptions): Promise;