import * as React from "react"; /** * @typedef {object} * @property {string} text - Text to be show in the new message separator */ interface InlineTextSeparatorProps { text: string; } /** * This component is used as a separator between new and read messages. * * @component * @category Components / Basic * @hideconstructor * @param {InlineTextSeparatorProps} props * @private */ export declare class InlineNewMessageSeparator extends React.PureComponent { static readonly displayName = "InlineTextSeparator"; render(): JSX.Element; } export {};