import { ReactNode } from 'react';
import { StackProps, TypographyProps } from '@mui/material';
export interface CustomCmpTextPropsModel {
    direction?: 'row' | 'row-reverse' | 'column' | 'column-reverse';
    spacing?: number;
    typographyProps?: TypographyProps;
    customComponent: ReactNode;
    stackProps?: StackProps;
}
