import * as React from 'react'; import { TypographyProps } from '@mui/material/Typography'; import { ExtendMui } from '../typings/extendMui'; export interface ToolbarTextProps extends ExtendMui { selected?: boolean; label: string; } export declare const useStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"toolbarTxt" | "toolbarBtnSelected">; declare const ToolbarText: React.FunctionComponent; export default ToolbarText;