/** @packageDocumentation * @module MessageCenter */ import "./Tab.scss"; import * as React from "react"; import type { CommonProps } from "@itwin/core-react"; /** Properties of [[MessageCenterTab]] component. * @internal */ export interface MessageCenterTabProps extends CommonProps { /** Tab content. */ children?: React.ReactNode; /** Describes if the tab is active. */ isActive?: boolean; /** Function called when the tab is clicked. */ onClick?: () => void; } /** Message center tab used in [[MessageCenterDialog]] component. * @internal */ export declare class MessageCenterTab extends React.PureComponent { render(): JSX.Element; } //# sourceMappingURL=Tab.d.ts.map