import Color from './color'; import type { ExtractPropTypes } from 'vue'; import type PreDefine from '../components/pre-define.vue'; export declare const parseColors: (colors: Color[], color: Color) => Color[]; export declare const preDefineProps: { readonly colors: { readonly type: import("vue").PropType; readonly required: true; readonly validator: (val: unknown) => boolean; __epPropKey: true; }; readonly color: import("ll-plus/es/utils").EpPropFinalized, unknown, unknown, () => Color, boolean>; }; export type PreDefineProps = ExtractPropTypes; export type PreDefineInstance = InstanceType;