///
import * as React from "react";
declare const Drawer: {
(props: any): JSX.Element;
Section: {
({ children, title, style, ...rest }: import("react-native").ViewProps & React.RefAttributes & {
title?: string;
children: React.ReactNode;
style?: import("react-native").StyleProp;
theme?: import("styled-components").DefaultTheme;
}): JSX.Element;
displayName: string;
};
Item: {
({ icon, label, active, style, onPress, accessibilityLabel, ...rest }: import("react-native").ViewProps & React.RefAttributes & {
label: string;
icon?: React.ReactElement React.ReactElement React.Component)>) | (new (props: any) => React.Component)>;
active?: boolean;
onPress?: () => void;
accessibilityLabel?: string;
style?: import("react-native").StyleProp;
theme?: import("styled-components").DefaultTheme;
}): JSX.Element;
displayName: string;
};
};
export default Drawer;