import type { ExtractPropTypes } from 'vue'; import type Tag from './tag.vue'; import { IconProps } from '../../icon'; export type tagShapeType = 'square' | 'round' | 'capsule' | 'leaf'; export declare const tagProps: { readonly label: import("ll-plus/es/utils").EpPropFinalized; readonly shape: import("ll-plus/es/utils").EpPropFinalized<() => tagShapeType, unknown, unknown, "square", boolean>; readonly icon: import("ll-plus/es/utils").EpPropFinalized, unknown, unknown, () => { iconName: string; color: any; size: any; }, boolean>; readonly iconDirection: import("ll-plus/es/utils").EpPropFinalized; }; export type TagProps = ExtractPropTypes; export type TagInstance = InstanceType;