export declare const CHATMESSAGE_CLASSNAME = "k-message";
declare const states: "selected"[];
export type KendoChatMessageProps = {
    time?: string;
    text?: string;
    status?: string;
};
export type KendoChatMessageState = {
    [K in (typeof states)[number]]?: boolean;
};
export declare const ChatMessage: {
    (props: KendoChatMessageProps & KendoChatMessageState & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
    states: "selected"[];
    options: {};
    className: string;
    defaultOptions: {
        time: string;
        text: string;
        status: string;
    };
};
export default ChatMessage;
