declare type SimpleValue = number | string | boolean; export declare function assertTruthy(val: SimpleValue | SimpleValue[], errMsg: string): void; export declare function assertHas(obj: any, prop: string, errMsg: any): void; export {};