import { FC } from 'react'; import { D as DirectionType } from '../commonTypes-TGqbHlp_.js'; type DestroyableCard = { position?: "bottom-right" | "bottom-left"; direction?: DirectionType; fixed?: boolean; children?: any; }; declare const DestroyableCard: FC; export { DestroyableCard };