import type { MeterVariants } from "@heroui/styles";
import type { ComponentPropsWithRef } from "react";
import { Meter as MeterPrimitive } from "react-aria-components";
interface MeterRootProps extends ComponentPropsWithRef<typeof MeterPrimitive>, MeterVariants {
}
declare const MeterRoot: {
    ({ children, className, color, size, ...props }: MeterRootProps): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
interface MeterOutputProps extends ComponentPropsWithRef<"span"> {
}
declare const MeterOutput: {
    ({ children, className, ...props }: MeterOutputProps): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
interface MeterTrackProps extends ComponentPropsWithRef<"div"> {
}
declare const MeterTrack: {
    ({ children, className, ...props }: MeterTrackProps): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
interface MeterFillProps extends ComponentPropsWithRef<"div"> {
}
declare const MeterFill: {
    ({ className, style, ...props }: MeterFillProps): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
export { MeterRoot, MeterOutput, MeterTrack, MeterFill };
export type { MeterRootProps, MeterOutputProps, MeterTrackProps, MeterFillProps };
