import { type QuestionInfo } from '../feishu/cards.js'; export declare function splitAnswerTokens(text: string): string[]; export declare function resolveOptionByToken(token: string, labels: string[], labelMap: Map): string | null; export declare function parseQuestionAnswerText(text: string, question: QuestionInfo): { type: 'skip' | 'custom' | 'selection'; values?: string[]; custom?: string; } | null; //# sourceMappingURL=question-parser.d.ts.map