/** @packageDocumentation * @module Footer */ import "./Popup.scss"; import * as React from "react"; import { PopupProps } from "@bentley/ui-core"; /** Available footer popup content types. * @beta */ export declare enum FooterPopupContentType { /** Indicates that popup is used to host a dialog. */ Dialog = "nz-content-dialog", /** Indicates that popup is used to host a panel. */ Panel = "nz-content-panel" } /** Properties of [[FooterPopup]] component. * @beta */ export interface FooterPopupProps extends Partial { /** Describes content type. Defaults to [[FooterPopupContentType.Dialog]]. */ contentType: FooterPopupContentType; } /** Default properties of [[FooterPopup]] component. * @beta */ export declare type FooterPopupDefaultProps = Pick; /** Popup component used in [[Footer]] component. * @beta */ export declare class FooterPopup extends React.PureComponent { static readonly defaultProps: FooterPopupDefaultProps; render(): JSX.Element; } //# sourceMappingURL=Popup.d.ts.map