export interface TextValue {
    id: string;
    label?: string;
    value?: string;
    itemProp?: string;
    align?: 'left' | 'right';
}
