import { AlterColumnAddGenerated, nil } from 'pgsql-ast-parser';
import { _Column, _IConstraint, _Transaction } from '../interfaces-private';
export declare class GeneratedIdentityConstraint implements _IConstraint {
    readonly name: string | nil;
    private column;
    private subs;
    private get table();
    private get schema();
    constructor(name: string | nil, column: _Column);
    uninstall(t: _Transaction): void;
    install(ct: _Transaction, _c: AlterColumnAddGenerated): void;
}
//# sourceMappingURL=generated.d.ts.map