import { PayOrderMode } from "@coin-voyage/shared/types"; import { type Option } from "../components/ui/OptionsList/types"; interface UseMethodOptionsProps { mode?: PayOrderMode; onClick: () => void; } export declare function useMethodOptions({ mode, onClick }: UseMethodOptionsProps): { options: Option[]; isLoading: boolean; }; export {};