import { CircularProgressProps } from "@mui/material/CircularProgress";
import { TypographyProps } from "@mui/material/Typography";
export type PercentCircularProgressProps = CircularProgressProps & {
    value: number;
    valueUnit?: string;
    textProps?: TypographyProps<"div">;
};
export declare function PercentCircularProgress(props: PercentCircularProgressProps): import("react/jsx-runtime").JSX.Element;
