import { CSSProperties, FC } from 'react';
import { IFieldProps } from './field';
export interface IMakeDescription {
    elementType: 'text';
    text?: string;
    containerStyle?: CSSProperties;
    textStyle?: CSSProperties;
    Icon?: FC;
    elements?: Array<Record<'text', string> & Record<'style', CSSProperties>>;
}
export interface IMakeDescriptionProps extends IFieldProps {
    element: Omit<IMakeDescription, 'elementType'>;
}
