/// /*! * Copyright (c) Microsoft. All rights reserved. * Licensed under the MIT license. See LICENSE file in the project. */ import type { AggregateArgs } from '@datashaper/schema'; import type { StepFormBaseProps } from '../types.js'; /** * Just the group/column/op inputs for an aggregation. * Input table is expected to be edited elsewhere and configured as the step input. */ export declare const AggregateFormBase: React.FC & { columns: string[]; }>;