import { InputProps } from '../Input'; interface WalletAddressFieldProps extends Omit { /** * If true, the input will display in an error state with error styling */ error?: boolean; /** * If true, the input will display in a valid state with success styling */ isValid?: boolean; /** * Label for the input * @default "Enter wallet address" */ label?: string; /** * Label for the paste button * @default "Paste" */ pasteButtonLabel?: string; } declare const WalletAddressField: import('react').ForwardRefExoticComponent>; export { WalletAddressField }; export type { WalletAddressFieldProps };