import { Comment } from 'typedoc';
import { CommentSource } from '../types';
/**
 * A wrapper around a found {@linkcode Comment} which also contains a {@linkcode CommentSource}
 * so we can observe where the `Comment` came from.
 */
export interface CommentData {
    comment: Comment;
    commentSource: CommentSource;
}
//# sourceMappingURL=types.d.ts.map