import { VALID_ICON_NAMES } from '../icons/iconNames'; import { default as React } from 'react'; import { IconName } from '../types/Icon.types'; export { VALID_ICON_NAMES }; export interface SidebarItemProps { /** Click callback, with event object passed as argument */ onClick?: (event: React.MouseEvent) => void; /** Whether the tab is currently selected */ isActive?: boolean; /** Label for the tab */ label: string; /** Name of Narmi icon to place at the start of the label */ startIcon?: IconName; /** Name of Narmi icon to place at the end of the label */ endIcon?: IconName; } declare const SidebarItem: { (_props: SidebarItemProps): React.JSX.Element; displayName: string; }; export default SidebarItem; //# sourceMappingURL=SidebarItem.d.ts.map