import React, { HTMLAttributes, MouseEventHandler } from 'react'; import { DefaultProps, Selectors } from '@mantine/core'; import { UserInfo } from "../../../interfaces/types"; import useStyles from "./index.styles"; type MyComponentStylesNames = Selectors; export interface Props extends DefaultProps> { trackingCategory?: string; url?: string; description?: string; replyingTo?: string; disableShortenContent?: boolean; mentionedUser?: UserInfo; mentions?: { id: number; name: string; }[]; maxChars?: number; maxLines?: number; hideShowAllBtn?: boolean; onClickCreatePostLink?: () => void; onClick?: MouseEventHandler; } export declare const PostContent: ({ trackingCategory, url, className, style, replyingTo, mentionedUser, description: rawDescription, disableShortenContent, mentions, maxChars, maxLines, hideShowAllBtn, styles, onClickCreatePostLink, ...rest }: Props) => React.JSX.Element; export {};