import { HTMLAttributes } from 'react';
import { TTextAlignLC } from '../../../types/TTextAlignLC';
import { TTypography } from '../../atoms/Typography';
export type TFieldset = {
legend?: string;
alignLegend?: TTextAlignLC;
typographySettings?: TTypography;
disabled?: boolean;
};
export type TFieldsetWithHTMLAttributes = TFieldset & HTMLAttributes;