@oxyhq/services
Version:
Reusable OxyHQ module to handle authentication, user management, karma system, device-based session management and more 🚀
12 lines • 367 B
TypeScript
import type React from 'react';
import { type StyleProp, type ViewStyle } from 'react-native';
interface SectionProps {
title?: string;
theme: 'light' | 'dark';
children: React.ReactNode;
isFirst?: boolean;
style?: StyleProp<ViewStyle>;
}
declare const Section: React.FC<SectionProps>;
export default Section;
//# sourceMappingURL=Section.d.ts.map