import type { ExtractPropTypes } from 'vue'; export declare function commentProps(): { actions: ArrayConstructor; /** The element to display as the comment author. */ author: any; /** The element to display as the comment avatar - generally an antd Avatar */ avatar: any; /** The main content of the comment */ content: any; /** Comment prefix defaults to '.ant-comment' */ prefixCls: StringConstructor; /** A datetime element containing the time to be displayed */ datetime: any; }; export type CommentProps = Partial>>;