import { FieldType } from "./core/enums/field-type";
import { PrimaryKeyType } from "./core/enums/primary-key-type";
export declare class MapperColumn {
    column: string;
    fieldType: FieldType;
    fieldReference: string;
    primaryKeyType?: PrimaryKeyType;
    tableReference?: string;
    constructor(column?: string, fieldType?: FieldType, fieldReference?: string, primaryKeyType?: PrimaryKeyType, tableReference?: string);
}
