import "../css/pay_domain.css";
type DataType = {
    biuName: string;
    inviteName?: string;
    id?: string;
    createTime?: number;
};
interface Props {
    biuName?: string;
    open: boolean;
    setOpen: (val: boolean) => void;
    data: DataType;
    success?: () => void;
    fail?: (err: any) => void;
}
export declare function PayModal(props: Props): import("react/jsx-runtime").JSX.Element;
export {};
