/** @public */
export type ChartSizeArray = [number | string | undefined, number | string | undefined];
/** @public */
export interface ChartSizeObject {
    width?: number | string;
    height?: number | string;
}
/** @public */
export type ChartSize = number | string | ChartSizeArray | ChartSizeObject;
//# sourceMappingURL=chart_size.d.ts.map