/** The order (e.g., chronological or alphabetical) in which results from a request are returned. */ export declare const SortOrder: { readonly Desc: "DESC"; readonly Asc: "ASC"; }; export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];