import * as React from 'react'; import { ButtonProps } from '@mui/material/Button'; import { ExtendMui } from '../typings/extendMui'; import { TypographyProps } from '@mui/material/Typography'; import { WithStyles } from '@material-ui/core/styles'; export interface ToolbarButtonProps extends ExtendMui, WithStyles { variant: TypographyProps['variant']; selected: boolean; label: string; align?: TypographyProps['align']; typographyClassName?: string; } export declare const styles: import("@material-ui/styles").StyleRules<{}, "toolbarBtn">; declare const _default: React.ComponentType & import("@material-ui/core/styles").StyledComponentProps<"toolbarBtn">>; export default _default;