export interface Motivation {
  width?: number;
  height?: number;
  color?: 'primary' | 'secondary' | 'custom' | string 
}

declare const Motivation: React.ComponentType<Motivation>;

export default Motivation;