export declare const getDropdownCompatibleData: (data: Array, { label, value }: { label: string; value: string; }) => { label: any; value: any; }[]; export declare const getDropdownClassesCompatibleData: (data: Array, { label, value, code }: { label: string; value: string; code: string; }) => { label: string; value: any; code: any; }[]; export declare const checkExactSearchMatch: (searchedText: string, data: Array, labelKey: string) => boolean;