import * as YAML from "../yaml.js";
declare type CstFlowMapItemWithoutComment = Exclude<YAML.cst.FlowMap["items"][number], YAML.cst.Comment>;
declare type CstFlowSeqItemWithoutComment = Exclude<YAML.cst.FlowSeq["items"][number], YAML.cst.Comment>;
export declare function groupCstFlowCollectionItems<T extends CstFlowMapItemWithoutComment[] | CstFlowSeqItemWithoutComment[]>(cstItems: T): T[];
export {};
