import type { Option } from "./types";
export declare function groupOptions(options: Option[], showAll: boolean, prevSelected?: Option): {
    groups: Option[][];
    all: Option[];
    flattened: Option[];
};
