import React from "react"; import { ApiPromise } from "@polkadot/api"; interface AccountInputProps extends AInputProps { api?: ApiPromise; } interface AInputProps extends NetworkDisplayProps { address: string; placeholder?: string; iconType?: "polkadot" | "substrate" | "beachball" | "jdenticon"; showAddress?: "full" | "short"; shortAmount?: number; disable?: boolean; } interface NetworkDisplayProps { network: "polkadot" | "kusama" | "westend" | "rococo"; showNetwork?: "both" | "name" | "icon"; } export declare const AddressInput: React.FC; export {};