import { CustomError } from './CustomError'; /** * Error thrown when a get address call is cancelled due to being outdated. * * This error is used specifically in the sdk-react-core to handle cases where * a get address promise needs to be discarded without setting an error state. * Common use case is when retrying the get address method - the original call * is cancelled to allow the SDK to handle the new request cleanly. */ export declare class GetAddressCancelledError extends CustomError { constructor(); }