import { FC } from 'react';
import './MessageBox-Corner.css';
export declare type MessageBoxCornerProps = {
    side: 'bottom-left' | 'bottom-right' | 'top-left' | 'top-right';
    width: number;
    height?: number;
};
export declare const MessageBoxCorner: FC<MessageBoxCornerProps>;
