import { Chain, ChainType } from "@lifi/sdk"; //#region src/hooks/useAddressValidation.d.ts declare enum AddressType { Address = 0, NameService = 1 } type ValidationArgs = { value: string; chainType?: ChainType; chain?: Chain; }; type ValidResponse = { address: string; addressType: AddressType; chainType: ChainType; isValid: true; }; type InvalidResponse = { error: string; isValid: false; }; declare const useAddressValidation: () => { validateAddress: (args: ValidationArgs) => Promise; isValidating: boolean; }; //#endregion export { AddressType, useAddressValidation }; //# sourceMappingURL=useAddressValidation.d.ts.map