import type { RefObject } from 'react';
import { type BottomSheetBaseCSSVariable } from '../constants';
export declare const useBottomSheetBaseCSSValue: <Value extends string | number>({ rootRef, defaultValue, variableName, formatValue, }: {
    rootRef: RefObject<HTMLElement>;
    defaultValue: Value;
    variableName: BottomSheetBaseCSSVariable;
    formatValue?: (value: Value) => string;
}) => {
    value: import("../../../hooks/useStoredValue").StoredValue<Value>;
    setValue: (newValue: Value) => void;
};
