import { FC } from "react"; import './index.css'; interface WeUIDialogProps { show: boolean; title: string; leftText?: string; onLeftClick?: () => void; rightText?: string; onRightClick?: () => void; } export declare const WeUIDialog: FC; export {};