/** @jsxImportSource @emotion/react */ import { Interpolation, Theme } from '@emotion/react'; import { HTMLAttributes } from 'react'; import { DragLayerMonitor, XYCoord } from 'react-dnd'; export type DragAroundProps = { dragging: boolean; preTransform?: string; postTransform?: string; animation?: CssAnimation; projection?: (monitor: DragLayerMonitor) => XYCoord | null; css?: Interpolation; } & HTMLAttributes; export type CssAnimation = { seconds: number; delay?: number; properties?: string[]; timingFunction?: string; }; declare const _default: import("react").ForwardRefExoticComponent<{ dragging: boolean; preTransform?: string; postTransform?: string; animation?: CssAnimation; projection?: (monitor: DragLayerMonitor) => XYCoord | null; css?: Interpolation; } & HTMLAttributes & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>; export default _default;