import { ActionView } from 'action'
import { LcbBlockProps } from '../lcb-block/types'
import { LcbActionViewProps } from '../lcb-action-view/types'
export interface LcbHomeSearch extends LcbBlockProps {
  placeholder?: string
  items?: ActionView[]
  btnText?: string
  tabs?: {
    label: string
    value: string
  }[]
  link?: LcbActionViewProps
  inputLink?: LcbActionViewProps
}
