import { Pair } from 'yaml'; export type PairKey = { value: string; }; /** * Sort properties in a Apache Camel friendly format. * * The order goes as follows: * 1. `id` prop * 2. `description` prop * 3. `uri` prop * 4. `parameters` prop * 5. `steps` prop * 6. the remaining properties in alphabetical order */ export declare const createCamelPropertiesSorter: (order: string[]) => (a: Pair, b: Pair) => number;