import { THtmlElementStyleDeclaration } from '../../Abstract';
import { TextAlign, TextDirection, TextFontStyle, TextFontWeight, TextOverflowWrap, TextWhiteSpace } from '../Constants';
type TKeysOfCssProps = keyof Omit;
type TCssProps = Readonly<{
[key in TKeysOfCssProps]?: string;
}>;
export type TTextCssProps = Omit & Readonly<{
textAlign?: TextAlign;
direction?: TextDirection;
overflowWrap?: TextOverflowWrap;
whiteSpace?: TextWhiteSpace;
fontStyle?: TextFontStyle;
fontWeight?: TextFontWeight;
}>;
export {};