import * as moment from 'moment'; import { Vehicle, Property, Asset, Income, Expenditure, Person } from './'; export declare class Case { people: Person[]; dependants?: moment.Moment[]; expenditure: Expenditure[]; income: Income[]; assets?: Asset[]; properties?: Property[]; vehicles?: Vehicle[]; } export declare class CaseResult { id: string; reference: string; } export declare class CaseMainDetails { addressCountryID: number; contactMade: boolean; firstName: string; gender: string; joint: boolean; maidenName: string; partnerUnaware: boolean; salutation: string; surname: string; }