import { SfDrawerPlacement } from '@storefront-ui/shared'; import { PropsWithChildren } from 'react'; import { PropsWithStyle } from '../../index.ts'; export interface SfModalProps extends PropsWithStyle, PropsWithChildren { open?: boolean; disableClickAway?: boolean; disableEsc?: boolean; onClose?: () => void; } export { SfDrawerPlacement };