export declare type SelectGroupValueItemProps = { key?: string; value?: string[]; }; export declare type SelectGroupValueProps = SelectGroupValueItemProps[]; export declare type SelectGroupValueOriginProps = { [key: string]: string; }; /** * GroupSelect数据结构转换为请求接口的结构 * @param tags */ export declare function processGroupSelect2Origin(tags: SelectGroupValueProps): any;