import { Row } from "./row.js"; import { Table } from "../table-443deac1.js"; import { ContentValue } from '@glint/template'; import { ColumnConfig } from "./interfaces/index.js"; declare class Column { table: Table; config: ColumnConfig; get Cell(): import("@glint/template").ComponentLike | undefined; get key(): string; get name(): string | undefined; constructor(table: Table, config: ColumnConfig); getValueForRow(row: Row): ContentValue; private getDefaultValue; getOptionsForRow(row: Row): { defaultValue: string; }; } export { Column };