import * as react_jsx_runtime from 'react/jsx-runtime';

interface FlagProps {
    title: string;
    desc?: string;
    variant: 'default' | 'success' | 'warning' | 'error' | 'info';
    isShadow?: boolean;
    isClosable?: boolean;
    onClose?: () => void;
}
declare function Flag(props: FlagProps): react_jsx_runtime.JSX.Element;

export { Flag, FlagProps };
