/** * @description 返回这个样式的颜色值 * @param {String} type 样式名称 [ primary | success | warning | danger | text ] */ export declare function typeColor(type?: string): string; declare const log: { print: (text: any, type?: string, back?: boolean) => void; pretty: (title: any, text: any, type?: string) => void; primary: (text: any, back?: boolean) => void; info: (text: any, back?: boolean) => void; success: (text: any, back?: boolean) => void; warning: (text: any, back?: boolean) => void; danger: (text: any, back?: boolean) => void; printVersion: (title: any, version: any, link: any, type?: string, fontSize?: string, versionColor?: string) => void; }; export default log; export declare const throwError: (scope: any, m: any) => void; export declare const throwWarn: (scope: any, m: any) => void;