import * as React from 'react'; import { DateOrTimeViewWithMeridiem } from '../../../internals'; import { PickerValidDate } from '../../../models'; import { UseStaticRangePickerParams, UseStaticRangePickerProps } from './useStaticRangePicker.types'; /** * Hook managing all the range static pickers: * - StaticDateRangePicker */ export declare const useStaticRangePicker: >({ props, ref, ...pickerParams }: UseStaticRangePickerParams) => { renderPicker: () => React.JSX.Element; };