import React from 'react';
export interface InfoBoxProps {
children: React.ReactNode;
variant?: 'error' | 'info' | 'success' | 'warning';
}
export declare function InfoBox({ children, variant }: InfoBoxProps): import("react/jsx-runtime").JSX.Element;