import type { BoxProps } from "@twilio-paste/box"; import { useDisclosurePrimitiveState } from "@twilio-paste/disclosure-primitive"; import type { DisclosurePrimitiveInitialState } from "@twilio-paste/disclosure-primitive"; import * as React from "react"; import type { SidebarNavigationDisclosureInitialState, SidebarNavigationDisclosureStateReturn } from "./types"; export interface DisclosureProps extends DisclosurePrimitiveInitialState { children: NonNullable; state?: SidebarNavigationDisclosureStateReturn; element?: BoxProps["element"]; } declare const SidebarNavigationDisclosure: React.ForwardRefExoticComponent>; export { SidebarNavigationDisclosure }; export { useDisclosurePrimitiveState as useSidebarNavigationDisclosureState }; export type { SidebarNavigationDisclosureInitialState, SidebarNavigationDisclosureStateReturn }; //# sourceMappingURL=SidebarNavigationDisclosure.d.ts.map