import type { LilypondPdfResult } from "../index.js"; export interface EmitLilypondPdfAssetOptions { title: string; source: string; binaryPath: string | undefined; render: () => Promise; } export declare function emitLilypondPdfAsset(options: EmitLilypondPdfAssetOptions): Promise;