type ConstructorType = new (value: any, ...args: any) => any; declare const isFilledObject: (value: any) => boolean; declare const isEmptyObject: (value: any) => boolean; declare const plainToNew: (TypeName: ConstructorType, value: object | object[] | undefined, ...args: any) => R; declare const includedPath: (first?: string, second?: string) => boolean; export { isFilledObject, isEmptyObject, plainToNew, includedPath };