import { FlowMetaParam, SortOption, TargetReference } from '../types'; export declare class FlowSortCollectionProcessor { id: string; name: string; description?: string; connector?: TargetReference; defaultConnector?: TargetReference; collectionReference?: string; limit?: null | number; sortOptions?: SortOption[]; constructor(flowSortCollection: FlowMetaParam); protected makeObservable(): void; onEdit: (flowSortCollection: FlowMetaParam) => void; }