import * as React from 'react'; import { BaseToolbarProps, ExportedBaseToolbarProps } from '@mui/x-date-pickers/internals'; import { DateRangePickerToolbarClasses } from "./dateRangePickerToolbarClasses.js"; export interface DateRangePickerToolbarProps extends ExportedDateRangePickerToolbarProps, Omit {} export interface ExportedDateRangePickerToolbarProps extends ExportedBaseToolbarProps { /** * Override or extend the styles applied to the component. */ classes?: Partial; } type DateRangePickerToolbarComponent = ((props: DateRangePickerToolbarProps & React.RefAttributes) => React.JSX.Element) & { propTypes?: any; }; /** * Demos: * * - [DateRangePicker](https://mui.com/x/react-date-pickers/date-range-picker/) * - [Custom components](https://mui.com/x/react-date-pickers/custom-components/) * * API: * * - [DateRangePickerToolbar API](https://mui.com/x/api/date-pickers/date-range-picker-toolbar/) */ declare const DateRangePickerToolbar: DateRangePickerToolbarComponent; export { DateRangePickerToolbar };