import { type Fallback } from '../model/Fallback'; interface SWRResourceOptions { fallback?: Fallback; pathDir?: string; } export declare function useSWRResource(filename: string | null | undefined, options?: SWRResourceOptions): Data; export {};