import type { JsonArray, JsonObject } from 'type-fest'; /** * Options for the `orderJson` function */ export type OrderJsonOptions = { /** * Value to checked, ordered and deeply frozen */ value: TObject; /** * Order of the object properties */ order: Array; }; /** * Orders JSON object by keys * * @returns The same type of object as the input re-ordered * * @public exported from `@promptbook/utils` */ export declare function orderJson(options: OrderJsonOptions): TObject;