import type { VNodeChild } from 'vue'; export type StatusTypes = 'success' | 'warning' | 'error' | 'default'; export type IconRenderer = Record VNodeChild>; export interface StatusColor { backgroundColor?: string; textColor?: string; }