import React from 'react';
import { ViewProps } from 'react-native';
import { xLocation } from './utils';
interface CloudProps extends ViewProps {
    /** 显示的文本主体 */
    title: React.ReactNode;
    /** 三角是否在下面 */
    isDown: boolean;
    /** 三角形位置 */
    triangle: number;
    /** 排列方式 */
    isStart: xLocation;
    /** 颜色 */
    backgroundColor?: string;
    /** 圆角大小 */
    borderRadius?: number;
}
export default function Cloud(props: CloudProps): JSX.Element;
export {};
