import * as elements from '@yellicode/elements'; export declare class SqlUtility { /** * Finds the first property that has isID set to true. */ static findIdentityProperty(type: elements.Type): elements.Property | null; static resolveAssociationEnds(association: elements.Association, entityType: elements.Type): { entityEnd: elements.Property; oppositeEnd: elements.Property; } | null; }