import { StyleType } from '../../common/types'; export interface InfoBoxProps { label: string; backgroundColor: 'info' | 'success' | 'warning' | 'error' | 'transparent'; icon: boolean | string; borderColor?: 'info' | 'success' | 'warning' | 'error'; style?: StyleType; textStyle?: StyleType; }