/** * Common Styles - Reusable Style Patterns * * Centralized style utilities to reduce duplication across screens. * These styles are composable and follow DRY principles. * * Usage: * ```typescript * import { useCommonStyles } from '@umituz/react-native-design-system-theme'; * * const MyComponent = () => { * const commonStyles = useCommonStyles(); * return ...; * }; * ``` */ /** * Hook to get common styles with dynamic theme support * Memoized to prevent unnecessary re-renders */ export declare const useCommonStyles: () => { form: import("react-native").ViewStyle; formHeader: import("react-native").ViewStyle; screenTitle: import("react-native").TextStyle; sectionTitle: import("react-native").TextStyle; subtitle: import("react-native").TextStyle; bodyText: import("react-native").TextStyle; secondaryText: import("react-native").TextStyle; section: import("react-native").ViewStyle; sectionPadded: import("react-native").ViewStyle; paddedHorizontal: import("react-native").ViewStyle; paddedVertical: import("react-native").ViewStyle; padded: import("react-native").ViewStyle; centerContainer: import("react-native").ViewStyle; centerContainerPadded: import("react-native").ViewStyle; row: import("react-native").ViewStyle; rowBetween: import("react-native").ViewStyle; rowCenter: import("react-native").ViewStyle; scrollView: import("react-native").ViewStyle; scrollContent: import("react-native").ViewStyle; scrollContentGrow: import("react-native").ViewStyle; scrollContentCentered: import("react-native").ViewStyle; screenContainer: import("react-native").ViewStyle; flexContainer: import("react-native").ViewStyle; screenContainerSecondary: import("react-native").ViewStyle; };