export interface TestingPersonShape {
    firstName?: string;
    surname?: string;
    age?: number;
    sex?: 'male' | 'female';
}
