import type { LilypondPage } from "../index.js";
export interface RenderedHtmlOptions {
/** Class applied to the outer `
` or `
` tag. */
class?: string;
/** Inline styles applied to the outer `
` or ``. */
style?: string;
/** Render only the first `n` pages. */
pageLimit?: number;
}
export declare function renderedHtml(pages: LilypondPage[], alt: string, options?: RenderedHtmlOptions): string;