import * as React from 'react'; import { SxProps, Theme } from '@mui/system'; import { type ScrollToBottomAffordanceProps } from '@mui/x-chat-headless'; import { type ChatScrollToBottomAffordanceClasses } from "./chatScrollToBottomAffordanceClasses.js"; export interface ChatScrollToBottomAffordanceProps extends ScrollToBottomAffordanceProps { className?: string; sx?: SxProps; classes?: Partial; } declare const ChatScrollToBottomAffordance: React.ForwardRefExoticComponent>; export { ChatScrollToBottomAffordance };