export interface Company { title: string; companyNumber: number; } export interface Address { address_line_1: string; premises: string; postal_code: string; locality: string; } export interface Links { self: string; } export interface Matches { title: number[]; snippet: string[]; }