/** @packageDocumentation * @module SnapMode */ import "./Panel.scss"; import * as React from "react"; import type { CommonProps } from "@itwin/core-react"; /** Properties of [[SnapModePanel]] component. * @internal */ export interface SnapModePanelProps extends CommonProps { /** Snap rows. I.e. [[Snap]] */ children?: React.ReactNode; /** Dialog title. */ title?: string; } /** Snap mode panel used with [[SnapMode]] component. * @note This is a presentational component and should be aligned with [[SnapMode]] component. * I.e. use [[FooterPopup]] to handle alignment. * @internal */ export declare class SnapModePanel extends React.PureComponent { render(): React.JSX.Element; } //# sourceMappingURL=Panel.d.ts.map