import type { FieldData } from '@/types'; interface SelectOptionsProps { label: string; value: string | number; } interface SelectParams { appId?: string; limit?: number; queryFieldList?: FieldData[]; busiObjectCode?: string; busiObjectId?: string; datasourceId?: string; [key: string]: any; } declare const useSelectData: (props: SelectParams) => SelectOptionsProps[][]; export default useSelectData;