/** @packageDocumentation * @module ToolSettings */ import "./OverflowPanel.scss"; import * as React from "react"; import { CommonProps } from "@bentley/ui-core"; /** Properties of [[ToolbarOverflowPanel]] component. * @internal */ export interface ToolbarOverflowPanelProps extends CommonProps { /** Panel content. */ children?: React.ReactNode; } /** Displays overflown tool settings. * @internal */ export declare function ToolbarOverflowPanel(props: ToolbarOverflowPanelProps): JSX.Element; //# sourceMappingURL=OverflowPanel.d.ts.map