import { LcbActionViewProps } from '../lcb-action-view/types'
import { LcbBlockProps } from '../lcb-block/types'

export interface LcbCalendarSearchProps extends LcbBlockProps {
  // Define the component's prop types here
  placeholder?: string
  link?: LcbActionViewProps
  icon?: string
  mode?: 'link' | 'search'
  inputLink?: LcbActionViewProps
}
