/** * Determines priority order: * - `static` - Remain in natural order. * - `hoist` - Placed before `static`. * - `fallback` - Placed after `static`. */ export type Position = 'static' | 'hoist' | 'fallback'; /** * Sorting function for sorting by position. */ export declare const byPosition: ({ position: a }: T, { position: b }: T) => 0 | 1 | -1; //# sourceMappingURL=position.d.ts.map