import { type BoxProps } from "@twilio-paste/box"; import type { HTMLPasteProps } from "@twilio-paste/types"; import * as React from "react"; import { type SidebarSkipLinksProps } from "./SidebarSkipLinks"; import type { Variants } from "./types"; export interface SidebarProps extends HTMLPasteProps<"div">, Omit { children: React.ReactNode; /** * Overrides the default element name to apply unique styles with the Customization Provider * * @default "SIDEBAR" * @type {BoxProps["element"]} * @memberof SidebarProps */ element?: BoxProps["element"]; /** * Whether the sidebar is collapsed / closed. * * @default false * @type {boolean} * @memberof SidebarProps */ collapsed?: boolean; /** * Whether the sidebar should hide completely or collapse into a fixed width bar. * * @type {Variants} * @memberof SidebarProps */ variant: Variants; } export declare const Sidebar: React.ForwardRefExoticComponent>; //# sourceMappingURL=Sidebar.d.ts.map