import { PropsWithChildren, ReactNode } from 'react'; import { SfSelectSize } from '@storefront-ui/shared'; export { SfSelectSize }; export interface SfSelectProps extends PropsWithChildren, Omit, 'size'> { size?: `${SfSelectSize}`; invalid?: boolean; wrapperClassName?: string; slotChevron?: ReactNode; placeholder?: string; }