import type { BoxProps } from "@twilio-paste/box"; import type { HTMLPasteProps } from "@twilio-paste/types"; import * as React from "react"; export type SidebarNavigationSeparatorProps = HTMLPasteProps<"hr"> & { /** * Overrides the default element name to apply unique styles with the Customization Provider * * @default "SIDEBAR_NAVIGATION_SEPARATOR" * @type {BoxProps["element"]} */ element?: BoxProps["element"]; }; declare const SidebarNavigationSeparator: React.ForwardRefExoticComponent & { /** * Overrides the default element name to apply unique styles with the Customization Provider * * @default "SIDEBAR_NAVIGATION_SEPARATOR" * @type {BoxProps["element"]} */ element?: BoxProps["element"]; } & React.RefAttributes>; export { SidebarNavigationSeparator }; //# sourceMappingURL=SidebarNavigationSeparator.d.ts.map