import { TableType } from '../../../domains/visualizations/core/chart-options-processor/translations/types'; import { ChartType } from '../../../types'; export declare const DEFAULT_PIVOT_TABLE_SIZE: { readonly width: 400; readonly height: 500; }; export declare const getChartDefaultSize: (chartType: ChartType | TableType) => { readonly width: 400; readonly height: 400; } | { readonly width: 400; readonly height: 500; } | { readonly width: 200; readonly height: 200; }; type WidgetSizeOptions = { hasHeader?: boolean; }; export declare const getWidgetDefaultSize: (type: ChartType | TableType | 'pivot', { hasHeader }?: WidgetSizeOptions) => { readonly width: 400; readonly height: 500; } | { readonly width: 400; readonly height: 400; } | { readonly width: 200; readonly height: 200; } | { width: 400 | 200; height: number; }; export {};