import { TypographyProps } from '../../../../WebCore/Typography/Typography.js';

interface UnitTextProps extends Omit<TypographyProps, 'component' | 'variation'> {
    sx?: TypographyProps['sx'];
    checked?: boolean;
    disabled?: boolean;
}

export type { UnitTextProps };
