import type { FunctionComponent } from 'react'; export interface MessageDividerProps { /** Variant of the divider */ variant?: 'inset' | 'fullWidth'; /** Content of the message divider */ content?: string; } declare const MessageDivider: FunctionComponent; export default MessageDivider;