import { ViewProps } from "@tarojs/components/types/View"; import { CSSProperties, ReactNode } from "react"; export interface BadgeWrapperProps extends ViewProps { style?: CSSProperties; children?: ReactNode; } declare function BadgeWrapper(props: BadgeWrapperProps): JSX.Element; export default BadgeWrapper;