export interface Ref { } export type Refable = T | Ref; export interface RefOptions { map?: (value: any) => T; } export declare function ref(path: string, options?: RefOptions): Ref; export declare function ref(path: string, map?: NonNullable['map']>): Ref;