/** * @RoutesEnum is a custom data type * @description this data type will help us to uniformize our route names */ export declare enum RoutesEnum { DCA = "dca", Swap = "swap", Send = "send", Pools = "pools", Merge = "merge", Airdrop = "airdrop", Metrics = "metrics", FindPool = "find-pool", SendLink = "send-link", SendBulk = "send-bulk", DCAOrders = "dca-orders", CreateCoin = "create-coin", Incinerator = "incinerator", CreatePool = "create-pool", SendHistory = "send-history", PoolDetails = "pool-details", SendTransfer = "send-transfer" } /** * @Routes is the constant with our internal or external routes * @description this constant will help us to create standard routes */ export declare const Routes: Record;