import { CSSProperties } from "react"; import { ViewProps } from "reactjs-view"; import { IconsNames, IconViewProps } from "../../../atoms"; export interface ItemProps extends ViewProps { size?: number; hasChildren?: boolean; title?: string; icon?: IconsNames; antIcon: IconViewProps["antName"]; color: string; secondColor?: string; activeBackgroundColor?: string; iconStyle?: CSSProperties; wrapperStyle?: CSSProperties; iconClassName?: string; wrapperClassName?: string; isHovered?: boolean; isActive?: boolean; } declare const Item: ({ hasChildren, title, size, icon, color, iconStyle, iconClassName, secondColor, wrapperClassName, wrapperStyle, isActive, isHovered, activeBackgroundColor, antIcon, ...rest }: ItemProps) => JSX.Element; export { Item }; //# sourceMappingURL=index.d.ts.map