/** 默认配置 */ export declare const ACTION_BAR_DEFAULTS: { readonly height: 50; readonly backgroundColor: "#ffffff"; readonly iconSize: 22; readonly iconColor: "#999999"; readonly textColor: "#666666"; readonly buttonHeight: 36; readonly borderRadius: 18; readonly gap: 8; readonly leftPadding: 12; readonly rightPadding: 12; readonly dividerColor: "#e0e0e0"; readonly primaryButtonColor: "#ff9500"; readonly secondaryButtonColor: "#FF2442"; readonly combinedButtonColor: "#FF2442"; }; export declare const createStyles: (theme: "light" | "dark", height?: number, backgroundColor?: string, dividerColor?: string) => { container: { width: number; height: number; backgroundColor: string; flexDirection: "row"; alignItems: "center"; borderTopWidth: number; borderTopColor: string; }; fixedContainer: { position: "absolute"; bottom: number; left: number; right: number; backgroundColor: string; }; leftSection: { flexDirection: "row"; alignItems: "center"; justifyContent: "space-around"; paddingLeft: 12; flex: number; }; iconItem: { alignItems: "center"; justifyContent: "center"; flex: number; maxWidth: number; }; iconContainer: { position: "relative"; }; iconText: { fontSize: number; color: "#666666"; marginTop: number; }; badge: { position: "absolute"; top: number; right: number; minWidth: number; height: number; borderRadius: number; backgroundColor: string; justifyContent: "center"; alignItems: "center"; paddingHorizontal: number; }; badgeText: { color: string; fontSize: number; fontWeight: "600"; }; rightSection: { flexDirection: "row"; alignItems: "center"; justifyContent: "flex-end"; paddingRight: 12; flex: number; }; separateContainer: { flexDirection: "row"; flex: number; gap: 8; }; separateButton: { flex: number; height: 36; borderRadius: 18; justifyContent: "center"; alignItems: "center"; }; primaryButton: { backgroundColor: "#ff9500"; }; secondaryButton: { backgroundColor: "#FF2442"; }; combinedContainer: { flexDirection: "row"; height: 36; borderRadius: 18; overflow: "hidden"; }; combinedLeftButton: { flex: number; backgroundColor: "#ff9500"; justifyContent: "center"; alignItems: "center"; paddingHorizontal: number; }; combinedRightButton: { flex: number; backgroundColor: "#FF2442"; justifyContent: "center"; alignItems: "center"; paddingHorizontal: number; }; buttonText: { color: string; fontSize: number; fontWeight: "600"; }; disabled: { opacity: number; }; };