import { BoxProps } from '../Box/Box';
import { ChatDensity } from './chatDensity';
interface ChatMessageReadStatusOwnProps {
    /** Chat density. */
    density?: ChatDensity;
    title?: string;
}
export interface ChatMessageReadStatusProps extends ChatMessageReadStatusOwnProps, BoxProps {
}
export declare type ChatMessageReadStatusStylesProps = Pick<ChatMessageReadStatusProps, 'density' | 'title'>;
export declare const chatMessageReadStatusClassName = "ui-chat__messagereadstatus";
/**
 * A ChatMessageReadStatus places a indicator to represent the read status of the message
 */
export declare const ChatMessageReadStatus: import("@fluentui/react-bindings").ComponentWithAs<"div", ChatMessageReadStatusOwnProps & BoxProps>;
export {};
