export interface ClaimAddress {
    line: string;
    city: string;
    state: string;
    zipCode: string;
    telephone?: string | null;
}
