import type { ChainType, CurrencyWithAmount } from "@coin-voyage/shared/types";
import { ROUTES } from "./routes";
export type InitState = {
    payOrderId: string;
    chainType: ChainType;
    open: boolean;
    walletId: string;
    route?: ROUTES;
};
export type CurrencyAndQuoteID = CurrencyWithAmount & {
    quoteId?: string;
};
