import type { KNEX_TYPES } from '@db-studio/constants'; import type { Options } from '../types.js'; import { SchemaHelper } from '../types.js'; export declare class SchemaHelperCockroachDb extends SchemaHelper { changeToType(table: string, column: string, type: (typeof KNEX_TYPES)[number], options?: Options): Promise; constraintName(existingName: string): string; }