import type { LilypondPage } from "../index.js"; import type { Format } from "../render.js"; export interface EmitLilypondAssetOptions { title: string; format: Format; source: string; resolution: number; crop: boolean; sizeScale: number; render: () => Promise; binaryPath: string | undefined; } export declare function emitLilypondAsset(options: EmitLilypondAssetOptions): Promise;