/** @packageDocumentation * @module Zone */ import "./Outline.scss"; import * as React from "react"; import { CommonProps, RectangleProps } from "@bentley/ui-core"; /** Properties of [[OutlineProps]] component. * @beta */ export interface OutlineProps extends CommonProps { /** Outline bounds. */ bounds: RectangleProps; } /** Zone outline displayed when merging/unmerging zones. * @beta */ export declare class Outline extends React.PureComponent { render(): JSX.Element; } //# sourceMappingURL=Outline.d.ts.map