import { ProviderItem } from '../../../elements/ProvidersList/ProvidersList'; interface Props { max: number; items: ProviderItem[]; actionText: string; onAdd: () => void; onRemove: (id?: string) => void; /** Whether to display chain information (logo and name) for each provider item. Defaults to true. */ showChain?: boolean; } export declare function FinalityProviderSubsection({ max, items, actionText, onAdd, onRemove, showChain }: Props): import("react/jsx-runtime").JSX.Element; export {};