/**
 * Transforms GIR documentation text to markdown format
 * @param text The documentation text to transform
 * @returns The transformed markdown text
 */
export declare function transformGirDocText(text: string): string;
/**
 * Transforms TSDoc tag text by removing newlines
 * Used for @param and @returns descriptions
 * @param text The tag text to transform
 * @returns The cleaned text
 */
export declare function transformGirDocTagText(text: string): string;
