import { QueryObserverOptions } from '@tanstack/react-query'; import { FunctionKeyV2 } from '../../constants'; import { GetPlaygroundToolInput, GetPlaygroundToolOutput } from './types'; export type UseGetPlaygroundTool = [ FunctionKeyV2.GET_PLAYGROUND_TOOL, GetPlaygroundToolInput ]; type Options = QueryObserverOptions; export declare const useGetPlaygroundTool: (input: GetPlaygroundToolInput, options?: Omit) => import('@tanstack/react-query').UseQueryResult; export {};