import * as DG from 'datagrok-api/dg'; export declare abstract class DataBase { readonly name?: string | undefined; protected constructor(name?: string | undefined); } export type BuildDataFunc = (src: TValue) => TData; export declare abstract class UnitsHandlerBase { protected readonly column: DG.Column; protected readonly requiredSemType: string; protected readonly nameColNames: string[]; readonly units: string; protected constructor(column: DG.Column, requiredSemType: string, nameColNames: string[]); protected _data: TData[] | undefined; get data(): TData[]; protected _nameCol: DG.Column | null | undefined; get nameCol(): DG.Column | null; protected _fileExt: string | undefined; fileExt(): string; protected abstract getBuildDataFunc(): BuildDataFunc; protected abstract getFileExt(): string; getFileName(cell: DG.Cell): string; } //# sourceMappingURL=units-handler-base.d.ts.map