UNPKG

418 BTypeScriptView Raw
1import * as React from 'react';
2import { ToolbarProps } from '@material-ui/core/Toolbar';
3import { ExtendMui } from '../typings/extendMui';
4export declare const useStyles: (props?: any) => Record<"toolbar" | "toolbarLandscape", string>;
5interface PickerToolbarProps extends ExtendMui<ToolbarProps> {
6 isLandscape: boolean;
7}
8declare const PickerToolbar: React.SFC<PickerToolbarProps>;
9export default PickerToolbar;