export interface Asset {
    list: AssetData[];
    filter?: string;
}
export interface AssetData {
    symbol?: string;
    name?: string;
    logo?: string;
    balance?: number | string;
    using?: number | string;
    value?: number | string;
}
export default function Asset(props: Asset): import("react").JSX.Element;
//# sourceMappingURL=Asset.d.ts.map