import type { Order as O } from "../../../../types/order";
export interface Confirmation {
    mode?: boolean;
    color?: {
        deposit?: string;
        withdraw?: string;
    };
    order: O;
    onProcess: Function;
    onClose: Function;
}
export default function Confirmation(props: any): import("react").JSX.Element;
//# sourceMappingURL=Confirmation.d.ts.map