import { CSS } from "../theme";
import * as ProgressPrimitive from "@radix-ui/react-progress";
import { StyledProgressBar } from "./progress.styles";
import { ComponentProps } from "react";
export declare type ProgressBarProps = ComponentProps<typeof StyledProgressBar> & ProgressPrimitive.ProgressProps & {
    css?: CSS;
    cssBarUnfilled?: CSS;
};
