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