import type { ChartScaleInput } from './types.js'; export interface GroupOptions { scale?: ChartScaleInput; padding?: number; } export interface GroupLayout { readonly type: 'group'; readonly scale?: ChartScaleInput; readonly padding?: number; } export declare function group(options?: GroupOptions): GroupLayout;