import { ReactNode } from 'react';
import { BackdropProps } from '@mui/material';

export type CBackdropProps = BackdropProps & {
    open: boolean;
    label?: ReactNode;
    disablePortal?: boolean;
};
export declare const Backdrop: (props: CBackdropProps) => false | import("react/jsx-runtime").JSX.Element;
