@edgex-web/components
Version:
EdgeX Universal UI Components Library - Reusable React components for deposit, withdraw and other common UI patterns
12 lines (11 loc) • 700 B
TypeScript
import { default as React } from 'react';
import { OpenWithdrawOptions, WithdrawAPI } from '../types';
export declare const WithdrawManager: React.ForwardRefExoticComponent<React.RefAttributes<WithdrawAPI>>;
export declare const openWithdraw: (options?: OpenWithdrawOptions) => void;
export declare const closeWithdraw: () => void;
export declare const updateWithdrawOptions: (options: Partial<OpenWithdrawOptions>) => void;
export declare const setWithdrawLoading: (loading: boolean) => void;
export declare const isWithdrawOpen: () => boolean;
export declare const isWithdrawLoading: () => boolean;
export declare const useWithdraw: () => WithdrawAPI;
//# sourceMappingURL=WithdrawManager.d.ts.map