import { Theme } from '@material-ui/core'; import { WithStyles } from '@material-ui/core/styles/withStyles'; import { TypographyProps } from '@material-ui/core/Typography'; import * as React from 'react'; import { ExtendMui } from '../typings/extendMui'; export interface ToolbarButtonProps extends ExtendMui, WithStyles { selected: boolean; label: string; } export declare const styles: (theme: Theme) => { toolbarBtn: { cursor: string; color: string; }; toolbarBtnSelected: { color: string; }; }; declare const _default: React.ComponentType & import("@material-ui/core").StyledComponentProps<"toolbarBtn" | "toolbarBtnSelected">>; export default _default;