declare const refreshSymbol: unique symbol; export type Refreshable = T & { /** * @internal */ [refreshSymbol]: () => void; }; export declare function refreshable(value: T, refresh: () => void): Refreshable; export declare function refresh(value: Refreshable): void; export declare function canRefresh(value: unknown): value is Refreshable; export {}; //# sourceMappingURL=refreshable.d.ts.map