import { SchemaHelper } from '../types'; export declare class SchemaHelperCockroachDb extends SchemaHelper { changeToText(table: string, column: string, options?: { nullable?: boolean; default?: any; }): Promise; changeToString(table: string, column: string, options?: { nullable?: boolean; default?: any; length?: number; }): Promise; changeToInteger(table: string, column: string, options?: { nullable?: boolean; default?: any; }): Promise; }