import type Attribute from '../Attribute.js'; export default class AttributeReference { protected _attribute: Attribute; get defined(): boolean; get definition(): import("../types.js").AttributeDefinitionToken | undefined; get forSchema(): boolean; get forColumn(): boolean; get isFlag(): boolean; get isMethod(): boolean; get kind(): string; constructor(attribute: Attribute); }