import { type BoxProps } from "@twilio-paste/box"; import type { HTMLPasteProps } from "@twilio-paste/types"; import * as React from "react"; export interface SidebarCollapseButtonProps extends HTMLPasteProps<"button"> { /** * A label for the collapse trigger for screenreader software. * * @type {string} * @memberof SidebarCollapseButtonProps */ i18nCollapseLabel: string; /** * A label for the expand trigger for screenreader software. * * @type {string} * @memberof SidebarCollapseButtonProps */ i18nExpandLabel: string; /** * Overrides the default element name to apply unique styles with the Customization Provider * * @default "SIDEBAR_COLLAPSE_BUTTON" * @type {BoxProps["element"]} * @memberof SidebarCollapseButtonProps */ element?: BoxProps["element"]; /** * Callback function to handle the click event * * @memberof SidebarCollapseButtonProps */ onClick?: () => void; } export declare const SidebarCollapseButton: React.ForwardRefExoticComponent>; //# sourceMappingURL=SidebarCollapseButton.d.ts.map