export type XaiPickRuleType = 'ref' | 'thought' | string;
export type XaiPickStructMap = Map<XaiPickRuleType, Map<string, any>>;
export type XaiExtractedData = {
    result: string;
    buffer: string;
    picks: XaiPickStructMap;
};
