import { FC, Key, ReactNode } from 'react'; export type SideBarProps = { open: boolean; variant: 'desktop' | 'mobile'; wrapperComponent?: FC; userPhoto?: string; userName?: string; onClickPhoto?: () => void; onClose?: () => void; onOpen?: () => void; sections?: SideBarContentTitleProps[] | []; bottomContent?: SideBarContentTitleProps[] | []; }; export type SideBarContentTitleBaseProps = { icon?: string; title?: string; color?: string; url?: string; onClick?: () => void; sections?: SideBarContentTitleProps[] | []; }; export type SideBarContentHiddenProps = { openSide?: boolean; last?: boolean; level?: number; clicked?: boolean; variant?: 'desktop' | 'mobile'; wrapperComponent?: FC; }; export type SideBarLinkProps = { url?: string; children?: ReactNode; onClick?: () => void; key?: Key; }; export type SideBarContentTitleProps = SideBarContentTitleBaseProps & SideBarContentHiddenProps; //# sourceMappingURL=type.d.ts.map