/** @packageDocumentation * @module ToolSettings */ import "./Setting.scss"; import * as React from "react"; import { CommonProps } from "@bentley/ui-core"; /** Properties of [[ToolSetting]] component. * @internal future */ export interface ToolSettingProps extends CommonProps { /** Tool setting content. */ children?: React.ReactNode; } /** Used in a [[DockedToolSettings]] component to display a setting. * @internal future */ export declare function DockedToolSetting(props: ToolSettingProps): JSX.Element; //# sourceMappingURL=Setting.d.ts.map