import { ReactNode } from 'react';
import { BoxProps } from '@mui/material';
import { TextForLinesOutputModel } from '../TextForLinesOutput';
export interface TextMultilinePropsModel extends BoxProps {
    text: ReactNode;
    label?: string;
    typographyProps?: Omit<TextForLinesOutputModel, 'text' | 'clines'>;
    showBorder?: boolean;
    showBoxShadow?: boolean;
    colorLabel?: string;
    borderColor?: string;
    backgroundColor?: boolean;
    labelRight?: boolean;
    showDivider?: boolean;
    clines?: number;
    onClick?: () => void;
}
