import { PropsWithChildren, ReactNode } from 'react'; import { UseDropdownOptions, PropsWithStyle } from '../../index.ts'; export interface SfDropdownProps extends Omit, PropsWithStyle, PropsWithChildren { open?: boolean; trigger: ReactNode; wrapperClass?: string; }