import * as SchemaAST from 'effect/SchemaAST'; export type OrderByDataType = 'text' | 'boolean' | 'float' | 'datetime' | 'point' | 'schedule'; export declare const getOrderByDataType: (type: SchemaAST.AST) => OrderByDataType | undefined; export declare const convertPropertyValue: (property: { propertyId: string; text: string; boolean: boolean; float: number; datetime: string; point: string; schedule: string; }, type: SchemaAST.AST) => string | number | boolean | undefined; //# sourceMappingURL=convert-property-value.d.ts.map