import { ShallowRef } from 'vue'; export type Fn = () => void; export type AnyFn = (...args: any[]) => any; export type ElRef = Readonly>; declare const SlotSymbol: unique symbol; export type SlotsType = Record> = { [SlotSymbol]?: T; }; export {};