import { FC } from 'react'; import { HeaderProps } from './LayoutBuilder.types'; /** * @function * @name LayoutBuilder * @param {{menu: {[name: string]: { * title: string, * path: string, * icon: object * }}}} props - array of objects with information about the view * that the button redirects * @returns {JSX.Element} smart component that returns the left side section that * stores the buttons to other views * @author: Juan David Avila Caycedo [JuanDAC] (https://github.com/JuanDAC) */ declare const LayoutBuilder: FC; export { LayoutBuilder };