import React from 'react'; import { colors } from '../../utils/colors'; declare type Props = { 'aria-labelledby'?: string; /** * Used to set the background color for active elements. * Should match the background color of your application * @default 'white' */ backgroundColor?: keyof Pick; className?: string; /** * If the item should collapse to only show icons * @default true */ collapse?: boolean; children?: React.ReactNode; }; export declare const SideMenu: React.FC; export declare const SideMenuTop: React.FC<{ children?: React.ReactNode; }>; export declare const SideMenuBottom: React.FC<{ children?: React.ReactNode; }>; export {};