import FullDate from '../full-date'; import { IPart } from "../i-part"; import { CommentWrapper } from "../comment-wrapper"; export default class FullDateWildcard extends CommentWrapper implements IPart { private readonly fullDate; constructor(partialDate: FullDate); equal(other: IPart): boolean; run(): FullDate[]; toString(): string; }