import { Type } from "./type";
/**
 * Enumerates the available property types on a data source schema.
 */
export declare enum GenericDataSourceSchemaPropertyType {
    /**
     * The property is of type boolean.
     */
    BooleanValue = 0,
    /**
     * The property is of type integer.
     */
    IntValue = 1,
    /**
     * The property is of type double.
     */
    DoubleValue = 2,
    /**
     * The property is of type datetime.
     */
    DateTimeValue = 3,
    /**
     * The property is of type string.
     */
    StringValue = 4
}
/**
 * @hidden
 */
export declare let GenericDataSourceSchemaPropertyType_$type: Type;
