import React from 'react';
interface CopyInputDisplayedAddressProps {
    address: string;
    truncateAddress?: boolean;
}
/** Element displaying the provided address along with a copy button below */
export declare function CopyInputDisplayedAddress({ address, truncateAddress, }: CopyInputDisplayedAddressProps): React.JSX.Element;
export {};
