import type { SentimentConfig } from './types'

export function defineSentiment<T extends SentimentConfig>(config: T) {
  return config
}

export * from './neutral'
export * from './action'
export * from './info'
export * from './success'
export * from './warning'
export * from './danger'
export * from './brand'

export * from './types'
