import { type RelationshipsContract } from '../types/relations.js';
import { type LucidRow, type ModelObject, type CherryPickFields } from '../types/model.js';
import { type DialectContract, type FileNode, type QueryClientContract, type TransactionClientContract } from '../types/database.js';
/**
 * Ensure that relation is defined
 */
export declare function ensureRelation<T extends RelationshipsContract>(name: string, relation?: T): relation is T;
/**
 * Ensure a key value is not null or undefined inside an object.
 */
export declare function ensureValue(collection: any, key: string, missingCallback: () => void): any;
/**
 * Collects values for a key inside an array. Similar to `Array.map`, but
 * reports missing values.
 */
export declare function collectValues(payload: any[], key: string, missingCallback: () => void): any[];
/**
 * Transform value if it is an instance of DateTime, so it can be processed by query builder
 */
export declare function transformDateValue(value: unknown, dialect: DialectContract): unknown;
/**
 * Compare two values deeply whether they are equal or not
 */
export declare function compareValues(valueA: unknown, valueB: unknown): boolean;
/**
 * Raises exception when a relationship `booted` property is false.
 */
export declare function ensureRelationIsBooted(relation: RelationshipsContract): void;
/**
 * Returns the value for a key from the model instance and raises descriptive
 * exception when the value is missing
 */
export declare function getValue(model: LucidRow | ModelObject, key: string, relation: RelationshipsContract, action?: string): any;
/**
 * Helper to find if value is a valid Object or
 * not
 */
export declare function isObject(value: any): boolean;
/**
 * Drops duplicate values from an array
 */
export declare function unique(value: any[]): any[];
/**
 * Returns a diff of rows to be updated or inserted when performing
 * a many to many `attach`
 */
export declare function syncDiff(original: ModelObject, incoming: ModelObject): {
    added: ModelObject;
    updated: ModelObject;
};
/**
 * Invokes a callback by wrapping it inside managed transaction
 * when passed client is not transaction itself.
 */
export declare function managedTransaction<T>(client: QueryClientContract | TransactionClientContract, callback: (trx: TransactionClientContract) => Promise<T>): Promise<T>;
/**
 * Returns the sql method for a DDL statement
 */
export declare function getDDLMethod(sql: string): "unknown" | "create" | "alter" | "drop";
/**
 * Normalizes the cherry-picking object to always be an object with
 * `pick` and `omit` properties
 */
export declare function normalizeCherryPickObject(fields: CherryPickFields): {
    pick: string[] | undefined;
    omit: string[] | undefined;
};
/**
 * Sources files from a given directory
 */
export declare function sourceFiles(fromLocation: URL, directory: string, naturalSort: boolean): Promise<{
    directory: string;
    files: FileNode<unknown>[];
}>;
export declare function parseMigrationIntent(name: string): {
    tableName: string;
    create: boolean;
    alter: boolean;
} | null;
