import type { BunMariaDBConfig } from "../../types"; export type ColumnInfoRow = { name: string; type: string; comment?: string; isNullable: boolean; columnDefault: string | null; extra: string; }; export default function getTableColumnsGemini({ tableName, config, }: { tableName: string; config?: BunMariaDBConfig; }): Promise;