import type { UseQueryResult } from "@tanstack/react-query";
import type { CacheFlushDateInput, CacheFlushDateOutput } from "../../shared/cacheFlushDate";
import type { FetchFunctionParams, QueryHookOptions } from "../../types";
/**
 * Fetch function for retrieving timestamp of when static wsf-schedule data was last updated
 */
export declare const fetchCacheFlushDateSchedule: (params?: FetchFunctionParams<CacheFlushDateInput>) => Promise<CacheFlushDateOutput>;
/**
 * React Query hook for retrieving timestamp of when static wsf-schedule data was last updated
 */
export declare const useCacheFlushDateSchedule: (params?: FetchFunctionParams<CacheFlushDateInput>, options?: QueryHookOptions<CacheFlushDateOutput>) => UseQueryResult<CacheFlushDateOutput, Error>;
export type CacheFlushDateScheduleInput = CacheFlushDateInput;
export type CacheFlushDateSchedules = CacheFlushDateOutput;
//# sourceMappingURL=cacheFlushDateSchedule.d.ts.map