/** @packageDocumentation * @module Footer */ import "./Indicator.scss"; import * as React from "react"; import { CommonProps } from "@bentley/ui-core"; /** Properties of [[FooterIndicator]] component. * @beta */ export interface FooterIndicatorProps extends CommonProps { /** Indicator content. */ children?: React.ReactNode; /** Describes whether the footer is in footer or widget mode. */ isInFooterMode?: boolean; /** Title for the indicator */ title?: string; /** Function called when the indicator is clicked */ onClick?: (event: React.MouseEvent) => void; } /** Indicator used in [[Footer]] component. * @beta */ export declare function FooterIndicator(props: FooterIndicatorProps): JSX.Element; //# sourceMappingURL=Indicator.d.ts.map