import { ColumnConfig, ColumnWidthCallback, FieldRenderer } from '../types.js'; export declare class GutterSequence { static instance(config?: Partial): { type: string; name: string; gutterName?: "button" | "sequence" | "row-selector" | "dirty" | undefined; title?: string | undefined; fixed?: boolean | undefined; icon?: string | undefined; iconOnly?: boolean | undefined; danger?: boolean | undefined; header: string | import("../types.js").HeaderConfig; record: import("../types.js").RecordConfig | { renderer: FieldRenderer; align: string; }; handlers: import("../types.js").GristEventHandlerSet; label?: import("../types.js").LabelConfig | undefined; hidden?: boolean | undefined; sortable: boolean; resizable: boolean; width: number | string | ColumnWidthCallback; forList: boolean; forCard: boolean; validation?: import("../types.js").ValidationCallback | undefined; accumulator?: import("../types.js").AccumulatorObject | undefined; filter?: import("../types.js").FilterConfig | undefined; imex?: (import("../types.js").ImexConfig | boolean) | undefined; multiple?: boolean | undefined; rowCount?: boolean | undefined; unusable?: boolean | undefined; multiline?: boolean | undefined; getterType: string; forGrid: boolean; }; }