import type * as React from 'react'; interface CommentItemProps extends Omit, 'children'> { hasBullet?: boolean; text: React.ReactNode; } declare function CommentItem({ text, hasBullet, className, ...props }: CommentItemProps): React.JSX.Element; export type { CommentItemProps }; export { CommentItem }; //# sourceMappingURL=index.d.ts.map