interface IProps {
    Show: boolean;
    Label?: string;
    Size?: number;
}
/**
 * Component for rendering the icon that appears during server error.
 * @param props renders and manages the details of the server error icon.
 * @returns a center aligned dark red server error icon.
 */
declare function ServerErrorIcon(props: IProps): JSX.Element;
export default ServerErrorIcon;
