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