import { LinearProgressProps } from "@mui/material/LinearProgress";
import { TypographyProps } from "@mui/material/Typography";
export type PercentLinearProgressProps = LinearProgressProps & {
    value: number;
    valueUnit?: string;
    textProps?: TypographyProps;
};
export declare function PercentLinearProgress(props: PercentLinearProgressProps): import("react/jsx-runtime").JSX.Element;
