import { ComponentInternalInstance } from 'vue'; declare type colorType = 'primary' | 'success' | 'warning' | 'danger' | 'default' | 'text'; export default function (vcInstance?: ComponentInternalInstance): { log: (...args: any) => void; warn: (...args: any) => void; error: (...args: any) => void; debug: (...args: any) => void; capsule: (title: string, info: string, type?: colorType) => void; success: (text: string) => void; warning: (text: string) => void; danger: (text: string) => void; primary: (text: string) => void; }; export {};