import * as React from 'react'; import { Animated, StyleProp, TextStyle } from 'react-native'; declare type Props = React.ComponentProps & { /** * Whether the badge is visible */ visible?: boolean; /** * Content of the `Badge`. */ children?: string | number; /** * Size of the `Badge`. */ size?: number; style?: StyleProp; ref?: React.RefObject; /** * @optional */ theme: ReactNativePaper.Theme; }; declare const _default: React.ComponentType> & { /** * Whether the badge is visible */ visible?: boolean | undefined; /** * Content of the `Badge`. */ children?: string | number | undefined; /** * Size of the `Badge`. */ size?: number | undefined; style?: StyleProp; ref?: React.RefObject> | undefined; /** * @optional */ theme: ReactNativePaper.Theme; }, "size" | "visible" | keyof import("react-native").TextProps | keyof React.RefAttributes> & { theme?: import("@callstack/react-theme-provider").$DeepPartial | undefined; }> & import("@callstack/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics> & { /** * Whether the badge is visible */ visible?: boolean | undefined; /** * Content of the `Badge`. */ children?: string | number | undefined; /** * Size of the `Badge`. */ size?: number | undefined; style?: StyleProp; ref?: React.RefObject> | undefined; /** * @optional */ theme: ReactNativePaper.Theme; }> & (({ children, size, style, theme, visible, ...rest }: Props) => JSX.Element), {}>; export default _default;