import * as React from "react"; import { IconShapes } from "../../icon/components/Icon"; import { IconSize } from "../../shared/types/iconSize"; export interface SidebarItemLabelProps { children?: React.ReactNode; icon?: IconShapes | React.ReactElement; iconWidth?: IconSize; } declare const SidebarItemLabel: ({ children, icon, iconWidth }: SidebarItemLabelProps) => JSX.Element; export default SidebarItemLabel;