import React from 'react'; import { IconName } from '@fortawesome/fontawesome-svg-core'; interface IDrawerMenuListCollapse { icon: IconName; text: string; children: React.ReactNode; } declare const DrawerMenuListCollapse: (props: IDrawerMenuListCollapse) => JSX.Element; export { DrawerMenuListCollapse };