/** 默认配置 */ export declare const DEFAULTS: { activeColor: string; activeTextColor: string; activeBackgroundColor: string; borderColor: string; backgroundColor: string; textColor: string; disabledTextColor: string; disabledBackgroundColor: string; borderRadius: number; borderWidth: number; fontSize: number; gap: number; paddingHorizontal: number; paddingVertical: number; }; export declare const createStyles: () => { container: { flexDirection: "row"; flexWrap: "wrap"; }; item: { alignItems: "center"; justifyContent: "center"; borderWidth: number; borderColor: string; backgroundColor: string; borderRadius: number; paddingHorizontal: number; paddingVertical: number; }; itemSelected: { borderColor: string; backgroundColor: string; }; itemDisabled: { backgroundColor: string; borderColor: string; }; text: { fontSize: number; color: string; textAlign: "center"; }; textSelected: { color: string; }; textDisabled: { color: string; textDecorationLine: "line-through"; }; };