import { ButtonComposition } from '../Button' export type AnimatableParts = 'box' | 'backdrop' export type ModalParts = | AnimatableParts | 'wrapper' | 'innerWrapper' | 'scrollContent' | 'scroll' | 'body' | 'footer' | 'header' | 'backdropTouchable' | 'title' | 'description' | 'titleWrapper' | `closeButton${Capitalize}` export type ModalComposition = | ModalParts | `${AnimatableParts}:visible` | `${AnimatableParts}:hidden` | `${AnimatableParts}:transition`