/** * The link element * @param label The text to display for the link * @param url The URL to link to * @returns A Markdown link if URL is provided, otherwise plain text */ export declare function link(label: string, url?: string): string;