//#region src/schema/query_constructor.d.ts
/**
 * A simple data structure that holds information about an attribute. It
 * is typically used to provide metadata about attributes in other classes
 * or data structures within the LangChain framework.
 */
declare class AttributeInfo {
  name: string;
  type: string;
  description: string;
  constructor(name: string, type: string, description: string);
}
//#endregion
export { AttributeInfo };
//# sourceMappingURL=query_constructor.d.cts.map