/**
 * Extract text from JIRA comment (handles both string and structured formats)
 */
export declare function extractCommentText(comment: string | {
    content: Array<{
        content: Array<{
            text: string;
            type: string;
        }>;
        type: string;
    }>;
    type: string;
    version: number;
} | undefined): string;
//# sourceMappingURL=jira.d.ts.map