--- import { objectOmit } from '@dzeio/object-util' export interface Props extends Omit { placeholder?: string label?: string block?: boolean suffix?: string prefix?: string options: Array } const baseProps = objectOmit(Astro.props, 'label', 'block', 'suffix', 'prefix', 'options') ---