import type { BoxProps } from "@twilio-paste/box"; import type { HTMLPasteProps } from "@twilio-paste/types"; import * as React from "react"; export interface SidebarNavigationDisclosureHeadingProps extends HTMLPasteProps<"div"> { children: NonNullable; /** * Overrides the default element name to apply unique styles with the Customization Provider * * @default "SIDEBAR_NAVIGATION_DISCLOSURE_HEADING" * @type {BoxProps["element"]} * @memberof SidebarNavigationDisclosureHeadingProps */ element?: BoxProps["element"]; /** * Set to make the Heading part of the selected page hierarchy * * @type {boolean} * @memberof SidebarNavigationDisclosureHeadingProps */ selected?: boolean; /** * Icon to be displayed within the Heading * * @type {React.ReactNode} * @memberof SidebarNavigationDisclosureHeadingProps */ icon?: React.ReactNode; } declare const SidebarNavigationDisclosureHeading: React.ForwardRefExoticComponent>; export { SidebarNavigationDisclosureHeading }; //# sourceMappingURL=SidebarNavigationDisclosureHeading.d.ts.map