import { CSSProperties } from "vue"; export interface Classes { [key: string]: boolean; } export interface Attributes { [key: string]: string | boolean; } export declare type Props = Record; export declare type Styles = CSSProperties | CallableFunction;