import { FinalityProviderItemProps } from '../../../elements/FinalityProviderItem/FinalityProviderItem'; interface TableElementProps { providerItemProps: FinalityProviderItemProps; attributes: Record; isSelected?: boolean; isSelectable?: boolean; onSelect?: () => void; /** Optional label for the CTA when not selected. Defaults to "Select" */ actionLabel?: string; /** Optional label for the CTA when selected. Defaults to "Selected" */ selectedLabel?: string; } export declare const TableElement: ({ attributes, providerItemProps, isSelected, isSelectable, onSelect, actionLabel, selectedLabel, }: TableElementProps) => import("react/jsx-runtime").JSX.Element; export {};