biuauthui
Version:
Ui modal for biuAuth
18 lines (17 loc) • 416 B
TypeScript
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 {};