import { AstType } from '../../ast/ast-type'; import { AstClassDeclarationProp } from '../../ast/ast-class-declaration-prop'; import { AstValue } from '../../ast/ast-value'; import { SchemaTableFieldTypeDescription } from '@daita/orm'; export declare function parseRelationalType(type: AstType): SchemaTableFieldTypeDescription; export declare function isRequiredProperty(property: AstClassDeclarationProp): boolean; export declare function getRawValue(value: AstValue | null): any;