import { ClaimNoticeDecision } from './ClaimNoticeDecision';
import { ClaimNoticeTypeEnum } from './ClaimNoticeTypeEnum';
/** Definition of claim notices applying to a domain name */
export interface ClaimNotice {
    /** Array of claim notice for the domain */
    claims?: ClaimNoticeDecision[];
    /** Ending date of claim notice */
    endingDate: string;
    /** Claim notice ID */
    id: string;
    /** Label referring to claim notice */
    label: string;
    /** Beginning date of claim notice */
    startingDate?: string;
    /** Type of claim notice */
    type?: ClaimNoticeTypeEnum;
}
//# sourceMappingURL=ClaimNotice.d.ts.map