import { ReactNode } from 'react';
import { StyleProp, ViewStyle } from 'react-native';
type Props = {
    text: string | ReactNode;
    containerStyle?: StyleProp<ViewStyle>;
};
export declare const Info: (props: Props) => import("react/jsx-runtime").JSX.Element;
export {};
