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