import { ReactNode, HTMLAttributes } from 'react'; interface Option { /** * Redirect URL of the folder, usually the index page */ url: string; icon?: ReactNode; title: ReactNode; description?: ReactNode; props?: HTMLAttributes; } declare function RootToggle({ options, ...props }: { options: Option[]; } & HTMLAttributes): React.ReactElement; export { type Option, RootToggle };