import type { Polymorphic } from '../../core/polymorphism'; import { type CardRootBaseProps } from '../CardRoot'; import { type MessagingCardLayoutProps } from './MessagingCardLayout'; export type MessagingCardBaseProps = Polymorphic.ExtendableProps< Omit, MessagingCardLayoutProps & { classNames?: { /** Root element */ root?: string; }; styles?: { /** Root element */ root?: React.CSSProperties; }; } >; export type MessagingCardProps = Polymorphic.Props; type MessagingCardComponent = (( props: MessagingCardProps, ) => Polymorphic.ReactReturn) & Polymorphic.ReactNamed; export declare const MessagingCard: MessagingCardComponent; export {}; //# sourceMappingURL=index.d.ts.map