export type GlassFormTableRow = object; export interface ColumnDef { key: Extract; header: string; } export interface GlassFormTableProps { columns: ColumnDef[]; rows: T[]; onChange: (rows: T[]) => void; className?: string; "data-testid"?: string; } export declare function GlassFormTable({ columns, rows, onChange, className, "data-testid": dataTestId, }: GlassFormTableProps): import("react/jsx-runtime").JSX.Element; export default GlassFormTable; //# sourceMappingURL=GlassFormTable.d.ts.map