import { TagSize, TagShape, TagPreset, PresetColorConfig } from './DbTag.types'; /** 预设颜色配置 */ export declare const PRESET_COLORS: Record; /** 尺寸配置 */ export declare const SIZE_CONFIG: Record; /** 形状配置 */ export declare const SHAPE_RADIUS: Record; /** 获取形状的圆角值 */ export declare const getShapeRadius: (shape: TagShape, height: number) => number; /** 创建样式 */ export declare const createStyles: () => { container: { flexDirection: "row"; alignItems: "center"; justifyContent: "center"; alignSelf: "flex-start"; }; disabled: { opacity: number; }; text: { fontWeight: "500"; }; iconLeft: { marginRight: number; }; iconRight: { marginLeft: number; }; closeButton: { marginLeft: number; padding: number; }; closeIcon: { opacity: number; }; tagGroup: { flexDirection: "row"; flexWrap: "wrap"; }; tagGroupNoWrap: { flexWrap: "nowrap"; }; tagGroupAlignCenter: { justifyContent: "center"; }; tagGroupAlignRight: { justifyContent: "flex-end"; }; };