/** Sort by the given field. */ export declare const SortBy: { readonly UpdatedAt: "updatedAt"; readonly CreatedAt: "createdAt"; }; export type SortBy = (typeof SortBy)[keyof typeof SortBy] | string;