/** 默认配置 */ export declare const TITLE_PAIR_DEFAULTS: { titleFontSize: number; titleColor: string; titleFontWeight: "600"; subtitleFontSize: number; subtitleColor: string; subtitleFontWeight: "400"; gap: number; }; /** 创建样式 */ export declare const createStyles: () => { containerHorizontal: { flexDirection: "row"; alignItems: "center"; }; containerVertical: { flexDirection: "column"; }; containerSpaceBetween: { flexDirection: "row"; alignItems: "center"; justifyContent: "space-between"; }; containerReverse: { flexDirection: "row-reverse"; }; containerVerticalReverse: { flexDirection: "column-reverse"; }; contentContainer: { flex: number; }; contentContainerSpaceBetween: { flexDirection: "row"; alignItems: "center"; justifyContent: "space-between"; flex: number; }; contentContainerHorizontal: { flexDirection: "row"; alignItems: "center"; }; contentContainerVertical: { flexDirection: "column"; }; alignLeft: { alignItems: "flex-start"; }; alignCenter: { alignItems: "center"; }; alignRight: { alignItems: "flex-end"; }; verticalAlignTop: { alignItems: "flex-start"; }; verticalAlignCenter: { alignItems: "center"; }; verticalAlignBottom: { alignItems: "flex-end"; }; title: { fontSize: number; color: string; fontWeight: "600"; }; subtitle: { fontSize: number; color: string; fontWeight: "400"; }; required: { color: string; fontSize: number; marginRight: number; }; requiredEnd: { marginLeft: number; marginRight: number; }; leftExtra: { marginRight: number; }; rightExtra: { marginLeft: number; }; divider: { height: number; backgroundColor: string; marginTop: number; }; pressable: {}; };