import React from 'react'; type Props = { isCollapsed: boolean; defaultLogo?: 'hellobacsi' | 'hellosehat' | 'hellohealth' | 'hellotogether' | 'hellocare' | 'logomark'; onBackClick?: () => void; customIcon?: JSX.Element; }; declare const SideHeader: ({ isCollapsed, defaultLogo, onBackClick, customIcon, }: Props) => React.JSX.Element; export { SideHeader };