import React from 'react'; import { Post } from '../../hooks'; type Props = { post: Post; style?: ThreadCommentStyles; onReply: () => void; }; export declare const ThreadComment: ({ post, style, onReply }: Props) => React.JSX.Element; declare const defaultStyles: (theme: import("../BrandConfigProvider").Theme) => readonly ["Circles.ThreadComment", import("../BrandConfigProvider/styles/createStyles").NamedStyles>]; declare module './../BrandConfigProvider/styles/types' { interface ComponentStyles extends ComponentNamedStyles { } } export type ThreadCommentStyles = NamedStylesProp; export {};