import { SxProps, Theme } from '@mui/material';
import { FunctionComponent } from 'react';
import { TypographyProps } from '../Typography/Typography.js';

interface TextBarDividerProps {
    sx?: SxProps<Theme>;
    typographyProps?: Partial<TypographyProps>;
    text: string;
}
declare const TextBarDivider: FunctionComponent<TextBarDividerProps>;

export { TextBarDivider as default };
export type { TextBarDividerProps };
