import { BalloonProps } from '@alifd/next/types/balloon'; import React from 'react'; export interface propsType extends BalloonProps { title?: any; container?: string | HTMLElement | ((target: HTMLElement) => HTMLElement); iconSize?: "inherit" | "small" | "large" | "medium" | "xxs" | "xs" | "xl" | "xxl" | "xxxl"; iconType?: string; iconColor?: string; iconStyle?: React.CSSProperties | undefined; align?: 't' | 'r' | 'b' | 'l' | 'tl' | 'tr' | 'bl' | 'br' | 'lt' | 'lb' | 'rt' | 'rb'; } declare const LPBalloonIcon: { ({ container, iconSize, iconType, title, children, className, iconColor, iconStyle, ...other }: propsType): JSX.Element; defaultProps: { iconType: string; iconSize: string; closable: boolean; align: string; autoFocus: boolean; triggerType: string; iconColor: string; }; }; export default LPBalloonIcon;