import { SuinsClient } from '@mysten/suins';
import { FC } from 'react';

interface IAddressInput {
    value: string;
    onChange: (value: string) => void;
    placeholder?: string;
    className?: string;
    disabled?: boolean;
    suinsClient?: SuinsClient;
}
declare const AddressInput: FC<IAddressInput>;

export { type IAddressInput, AddressInput as default };
