import { RenderMode } from './Renderer';
export interface SongParts {
    title: string;
    content: string;
    css: string;
}
export default function chordsong(text: string, renderMode?: RenderMode, theme?: string, html?: boolean): string | SongParts;
