import { ProviderType, SortType } from 'types'; import { GetProvidersType } from './getOriginalProviders'; interface GetFilteredProviders extends GetProvidersType { filter: string; sort: SortType; chosenProvider?: ProviderType; } export declare function getVisibleProviders({ filter, sort, chosenProvider, minDelegation, allProviders }: GetFilteredProviders): { activeProviders: ProviderType[]; inactiveProviders: ProviderType[]; unavailableProviders: ProviderType[]; isChosenProviderVisible: boolean; }; export {}; //# sourceMappingURL=getVisibleProviders.d.ts.map