import * as React from 'react'; import { BaseToolbarProps } from '../models/props/baseToolbarProps'; import { PickersToolbarClasses } from './pickersToolbarClasses'; import { ViewType } from '../models'; export interface PickersToolbarProps extends Pick, 'getMobileKeyboardInputViewButtonText' | 'isMobileKeyboardViewOpen' | 'toggleMobileKeyboardView'> { className?: string; viewType?: ViewType; isLandscape: boolean; landscapeDirection?: 'row' | 'column'; toolbarTitle: React.ReactNode; classes?: Partial; } declare type PickersToolbarComponent = ((props: React.PropsWithChildren> & React.RefAttributes) => JSX.Element) & { propTypes?: any; }; export declare const PickersToolbar: PickersToolbarComponent; export {};