import { TFancySVGAtom } from '../../atoms/FancySVGAtom';
import { TTypography } from '../../atoms/Typography';
import { TSideBarItem } from '../../molecules/SideBarItem';
export type TFancySideBarItem = {
    icon: React.ReactNode;
    label: string;
    typographySettings?: Omit<TTypography, 'sizeC'>;
    iconSettings?: Omit<TFancySVGAtom, 'sizeC'>;
} & Omit<TSideBarItem, 'children'>;
