interface CommentColors { author: string; authorDetails: string; content: string; highlight: string; time: string; } interface CommentSizes { avatarSize: string; } interface CommentSpace { avatarMarginLeft: string; avatarMarginRight: string; contentMarginTop: string; editorActionsPadding: string; marginBottom: string; nestedMargin: string; padding: string; reactionMarginTop: string; timeSeparatorPadding: string; } interface CommentFontSizes { author: string; authorDetails: string; content: string; time: string; } interface CommentFontWeights { author: number; authorDetails: number; content: number; time: number; } interface CommentLineHeights { author: string; authorDetails: string; content: string; time: string; } interface CommentRadii { container: string; } declare const commentColors: CommentColors; declare const commentSizes: CommentSizes; declare const commentSpace: CommentSpace; declare const commentFontSizes: CommentFontSizes; declare const commentFontWeights: CommentFontWeights; declare const commentLineHeights: CommentLineHeights; declare const commentRadii: CommentRadii; export { commentColors, commentSizes, commentSpace, commentFontSizes, commentFontWeights, commentLineHeights, commentRadii, };