import { ClaimDate } from './ClaimDate';
export interface ClaimDatePeriod {
    from: ClaimDate;
    to?: ClaimDate;
}
