/** @packageDocumentation * @module ToolSettings */ import "./Overflow.scss"; import * as React from "react"; import type { CommonProps } from "@itwin/core-react"; /** Properties of [[ToolSettingsOverflow]] component. * @internal */ export interface DockedToolSettingsOverflowProps extends CommonProps { /** Function called when button is clicked. */ onClick?: () => void; /** Function called when button is resized. */ onResize?: (w: number) => void; } /** Entry point to overflown tool settings of [[DockedToolSettings]] component. * @internal */ export declare const DockedToolSettingsOverflow: React.ForwardRefExoticComponent>; //# sourceMappingURL=Overflow.d.ts.map