/** @packageDocumentation * @module Footer */ import "./Popup.scss"; import * as React from "react"; import { CommonProps } from "@bentley/ui-core"; /** Properties of [[ToolSettingsPopup]] component. * @beta */ export interface ToolSettingsPopupProps extends CommonProps { /** Popup content. */ children?: React.ReactNode; /** Describes if the popup is open. */ isOpen?: boolean; /** Function called when the popup is closed. */ onClose?: () => void; /** Popup target. */ target?: HTMLElement | null; } /** Popup component used in [[ToolSettings]] component. * @beta */ export declare class ToolSettingsPopup extends React.PureComponent { render(): JSX.Element; } //# sourceMappingURL=Popup.d.ts.map