import { Property, PropertyType } from './types'; export declare const getPropertiesForData: (data: any[], deep: boolean) => Property[]; export declare const isInt: (n: any) => boolean; export declare const isFloat: (n: any) => boolean; export declare const getDcuplPropertyTypeForNativeType: (value: any) => PropertyType;