import ChoseFieldStore from '@/components/chose-field/store'; import { IssueSearchStore } from '@/components/issue-search'; interface IGetIssueSearchDataConfigProps { store: IssueSearchStore; chosenStore: ChoseFieldStore; onChoseField?: (key: string) => void; projectId?: string; } interface IGetIssueSearchDataProps { onChange: (key: string, value?: any, option?: any) => void | boolean; onClear: () => void; } declare function useGetIssueSearchData(config: IGetIssueSearchDataConfigProps): IGetIssueSearchDataProps; export default useGetIssueSearchData;