import { TextCell } from '@glideappsfinal/glide-data-grid'; export declare const DEFAULT_ROW_HEIGHT = 33; export declare const EMPTY_CELL_OBJ: TextCell; export type TextCellOptions = Omit & { data?: string; allowOverlay?: boolean; }; export declare const createTextCellGlide: (displayData: string, options?: TextCellOptions) => TextCell; export declare const createEmptyCellGlide: (options?: TextCellOptions) => TextCell;