import { ReactNode } from "react"; //#region src/primitives/message/MessageIf.d.ts type MessageIfProps = { children: ReactNode; user?: boolean | undefined; assistant?: boolean | undefined; running?: boolean | undefined; last?: boolean | undefined; }; /** * @deprecated Use ` s.message...} />` instead. */ declare const MessageIf: ({ children, user, assistant, running, last }: MessageIfProps) => import("react").JSX.Element | null; //#endregion export { MessageIf, MessageIfProps }; //# sourceMappingURL=MessageIf.d.ts.map