import type { UseQueryResult } from '@tanstack/react-query'; import type { STACCollection, STACItem } from './api'; export declare const useStacCollection: (stacBaseUrlWithCollection: string, instanceId?: string, enabled?: boolean) => UseQueryResult; export declare const useStacItems: (stacBaseUrlWithCollection: string, startDate?: string, endDate?: string) => UseQueryResult; export declare const useStacTemporalStepItems: (stacBaseUrlWithCollection: string, startDate?: string, endDate?: string, enabled?: boolean) => UseQueryResult;