import type { Ref } from 'vue'; /** * Any function */ export declare type Fn = () => void; /** * Maybe it's a ref, or not. * * ```ts * type MaybeRef = T | Ref * ``` */ export declare type MaybeRef = T | Ref;