import React from 'react'; interface Props { backgroundColor?: string; children: React.ReactNode; textColor?: string; } declare const DrawerItem: ({ backgroundColor, children, textColor }: Props) => JSX.Element; export default DrawerItem;