import type { Ref } from 'vue'; export default function useDataFetcherFind(fetchFunction: Function, request: Request, mapFunction?: Function): { responseData: Ref; loading: Ref; error: Ref; fetchData: () => Promise; };