import type { BoxProps } from "@twilio-paste/box"; import type { ButtonProps } from "@twilio-paste/button"; import type { HTMLPasteProps } from "@twilio-paste/types"; import * as React from "react"; export interface SidebarNavigationItemProps extends HTMLPasteProps<"a"> { /** * String for the url to link to. * * @type {ButtonProps["href"]} * @memberof SidebarNavigationItemProps */ href: ButtonProps["href"]; children: React.ReactNode; /** * Overrides the default element name to apply unique styles with the Customization Provider * * @default "SIDEBAR_NAVIGATION_ITEM" * @type {BoxProps["element"]} * @memberof SidebarNavigationItemProps */ element?: BoxProps["element"]; /** * Set to indicate this item matches to the current page the user is on * * @type {boolean} * @memberof SidebarNavigationItemProps */ selected?: boolean; /** * Any product icons can be used here * * @type {React.ReactNode} * @memberof SidebarNavigationItemProps */ icon?: React.ReactNode; } declare const SidebarNavigationItem: React.ForwardRefExoticComponent>; export { SidebarNavigationItem }; //# sourceMappingURL=SidebarNavigationItem.d.ts.map