import React from 'react'; import { ViewProps } from 'react-native'; export interface DrawerSectionProps extends ViewProps { children?: React.ReactNode; title?: string; } export declare const DrawerSection: React.ComponentType;