import { TypographyVariants } from '../../interfaces'; export interface ExpandableTextProps { shortText: string; longText: string; expandButtonText?: string; onExpand?: () => void; typographyVariant?: TypographyVariants; }