import { CSSProperties, ReactNode } from 'react'; export type MassActionsStaticProps = { children: ReactNode; className?: string; style?: CSSProperties; position?: 'absolute' | 'static' | 'relative'; show?: boolean; animate?: boolean; };