/// import type { CommonPropsType } from '../../../types'; import './style'; export default function Tips({ className, tips, type, id, style, }: PropsType): JSX.Element; export interface PropsType extends CommonPropsType { tips?: string; type?: 'warn' | 'normal'; }