import { DateOrTimeViewWithMeridiem } from '@mui/x-date-pickers/internals';
import { UseStaticRangePickerParams, UseStaticRangePickerProps } from "./useStaticRangePicker.types.js";
/**
 * Hook managing all the range static pickers:
 * - StaticDateRangePicker
 */
export declare const useStaticRangePicker: <TView extends DateOrTimeViewWithMeridiem, TExternalProps extends UseStaticRangePickerProps<TView, any, TExternalProps>>({
  props,
  steps,
  ...pickerParams
}: UseStaticRangePickerParams<TView, TExternalProps>) => {
  renderPicker: () => import("react/jsx-runtime").JSX.Element;
};