export interface TestResultResponse { hasUndefinedValue: boolean; propertyList: ResultProperty[]; } export interface ResultProperty { name: string; depth: number; } export declare function IsUndefined(v: any): TestResultResponse;