import type { BaseTableAPI } from '../../ts-types/base-table'; import type { ICellAxisOption } from '../../ts-types/component/axis'; export type ComputeAxisComponentWidth = (config: ICellAxisOption, table: BaseTableAPI) => number; export type ComputeAxisComponentHeight = (config: ICellAxisOption, table: BaseTableAPI) => number; export declare function computeAxisComponentWidth(config: ICellAxisOption, table: BaseTableAPI): number; export declare function computeAxisComponentHeight(config: ICellAxisOption, table: BaseTableAPI): number;