import React from 'react';
import { WalletDescriptorWithCAMainStatus } from '../../../../../common/types';
type TDropdownCAListReceiverProps = {
    values: WalletDescriptorWithCAMainStatus[];
    selected?: WalletDescriptorWithCAMainStatus;
    setter: React.Dispatch<React.SetStateAction<WalletDescriptorWithCAMainStatus>>;
    maxLength?: number;
};
export declare const DropdownCAListReceiver: (props: TDropdownCAListReceiverProps) => React.JSX.Element;
export {};
