import { ReactNode } from 'react'; interface TipsProps { visible: boolean; title: string; content: ReactNode; confirmBtnText?: string; onClose?: () => void; onConfirm?: () => void; } export declare function Tips({ visible, title, content, confirmBtnText, onClose, onConfirm }: TipsProps): import("react/jsx-runtime").JSX.Element; export declare const createTips: (props: Omit) => void; export {};