import { FC, Ref } from '@dineug/r-html'; import { AppContext } from '../../appContext'; export type AutomaticTablePlacementProps = { app: Ref; onChange: (tables: TablePoint[]) => void; }; export type TablePoint = { id: string; x: number; y: number; }; declare const AutomaticTablePlacement: FC; export default AutomaticTablePlacement;