/** Parses pasted/typed account text into a search term and field type. */ export declare function parseAccountSearchQuery(rawQuery: string): { query: string; queryKey: 'name' | 'accountNumber'; }; /** * The below function sorts the account search results based on the provided query string (account name or number). * test */ export declare function sortAccountsByQuery(accounts: any, queryStr: any, queryKey: any): any; //# sourceMappingURL=index.d.ts.map