import { ReactElement } from 'react';
import { AlertProps } from '@mui/material/Alert';
interface Props {
    text: string;
}
export declare function AlertCustom({ text, ...props }: Props & AlertProps): ReactElement;
export {};
