import React from "react";
import { LaunchProps } from "./types";
interface PayHereReactProps extends LaunchProps {
    open: boolean;
    selector: string;
    disableCustomer?: "yes" | "no";
    hideAmount?: "yes" | "no";
}
declare const PayhereEmbed: React.FC<PayHereReactProps>;
export default PayhereEmbed;
