import { ProIcon } from './types'; /** * Searches for icons with names or tags that contain `key` and returns them as `ProIcon`. * * Note: This will import all icons and breaks tree-shaking. * * @param query - The query to search for. Can be a name in any case or a tag. * @returns An array of `ProIcon`s that match the query. * * [Documentation](https://procode-software.github.io/proicons/docs/javascript-api#search) */ export declare function search(query: string): ProIcon[];