import { TFancyBottomBarIcon } from '../FancyBottomBarIcon';
import { TLayer } from '../../../types/TLayer';
import { TUiColorsNotTransparent } from '../../../types/TUiColorsNotTransparent';
import { CSSProp } from 'styled-components';
export type TFancyHandyNav = {
    items?: TFancyBottomBarIcon[];
    isVisible?: boolean;
    wichIndexIsActive?: string;
    themeType?: TUiColorsNotTransparent;
    themeTypeSwitchList?: TUiColorsNotTransparent;
    layer?: TLayer;
    switchListLayer?: TLayer;
    outlined?: boolean;
    outlinedBackgroundStrength?: number;
    externalStyle?: CSSProp;
};
export type TFancyHandyNavWithHTMLAttrs = TFancyHandyNav & React.HTMLAttributes<HTMLElement>;
