import { FC } from 'react';
export interface DappletInfoProps {
    title: string;
    value: string;
    appearance?: 'text' | 'hash' | 'link';
    className?: string;
    onClick?: any;
}
export declare const DappletInfo: FC<DappletInfoProps>;
