/** * These are some functions you need to unit test. */ import { Company, Person } from './types'; export declare const getCompanyPostageString: (company: Company) => string; export declare const getFullNameString: (person: Person) => string;