import React from "react"; interface AccountInputProps 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 AccountInput: React.FC; export {};