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