import { SchemaType } from '../types';
export declare type sortConfig = {
[type in SchemaType]: {
[key: string]: {
order: string;
type: string;
};
};
};
export declare const sortKeysByType: (keys: string[], sort?: 'asc' | 'desc', sortConfig?: any) => string[];