import { As, Options, Props } from "ariakit-utils/types"; import { MeterState } from "./meter-state"; export declare const useMeter: import("ariakit-utils/types").Hook>; export declare const Meter: import("ariakit-utils/types").Component>; export declare type MeterOptions = Options & { /** * Object returned by the `useMeterState` hook. */ state: MeterState; }; export declare type MeterProps = Props>;