import { z } from 'zod'; import { stateIndicator } from './aether'; export interface UseProps extends Pick, "source" | "options" | "stalenessTimeout"> { aetherKey: string; } export interface UseReturn extends Pick, "key" | "stale"> { } export declare const use: ({ aetherKey, source, options, stalenessTimeout, }: UseProps) => UseReturn; //# sourceMappingURL=use.d.ts.map