export declare const createStyles: (theme?: "light" | "dark") => { container: { backgroundColor: string; }; card: { backgroundColor: string; borderRadius: number; overflow: "hidden"; }; cardShadowSm: { shadowColor: string; shadowOffset: { width: number; height: number; }; shadowOpacity: number; shadowRadius: number; elevation: number; }; cardShadowMd: { shadowColor: string; shadowOffset: { width: number; height: number; }; shadowOpacity: number; shadowRadius: number; elevation: number; }; cardShadowLg: { shadowColor: string; shadowOffset: { width: number; height: number; }; shadowOpacity: number; shadowRadius: number; elevation: number; }; cardHeader: { flexDirection: "row"; alignItems: "center"; justifyContent: "space-between"; paddingHorizontal: number; paddingVertical: number; borderBottomWidth: number; borderBottomColor: string; }; cardHeaderContent: { flex: number; }; cardTitle: { fontSize: number; fontWeight: "600"; color: string; }; cardSubtitle: { fontSize: number; color: string; marginTop: number; }; cardBody: { padding: number; }; cardFooter: { paddingHorizontal: number; paddingVertical: number; borderTopWidth: number; borderTopColor: string; }; cardCover: { width: "100%"; resizeMode: "cover"; }; cardCollapse: { marginLeft: number; }; section: { backgroundColor: string; }; sectionHeader: { flexDirection: "row"; alignItems: "center"; justifyContent: "space-between"; paddingHorizontal: number; paddingVertical: number; }; sectionHeaderLeft: { flexDirection: "row"; alignItems: "center"; }; sectionIcon: { marginRight: number; }; sectionTitle: { fontSize: number; fontWeight: "600"; color: string; }; sectionDivider: { height: number; backgroundColor: string; marginHorizontal: number; }; sectionContent: { paddingHorizontal: number; paddingVertical: number; }; flex: { display: "flex"; }; row: { flexDirection: "row"; }; col: { flexDirection: "column"; }; center: { alignItems: "center"; justifyContent: "center"; }; spacer: { backgroundColor: string; }; disabled: { opacity: number; }; fullWidth: { width: "100%"; }; }; export default createStyles;