import { IOrderedPaths } from "../interface/i-ordered-paths";
import { IOpenApi } from "../interface/open-api-mine/i-open-api";
export declare const orderedPath: (openApi: IOpenApi) => IOrderedPaths;
export declare const groupPath: (paths: string[], pathSplitLevel?: number) => GroupedPath;
export interface GroupedPath {
    [groupName: string]: Array<string>;
}
