import { TLayer } from '../../../types/TLayer'; import { TUiColorsNotTransparent } from '../../../types/TUiColorsNotTransparent'; import { HTMLAttributes, ReactNode } from 'react'; import { CSSProp } from 'styled-components'; export type TSwipeUpModal = { isOpen?: boolean; children?: ReactNode; isCloseable?: boolean; isScalable?: boolean; themeType?: TUiColorsNotTransparent; layer?: TLayer; backdrop?: boolean; onClose?: () => void; externalStyle?: CSSProp; heightRecalculationTrigger?: number; }; export type TSwipeUpModalWithHTMLAttrs = TSwipeUpModal & Omit, 'style'>;