import { createShapePropsMigrationSequence } from '../records/TLShape' import { ShapeProps, TLBaseShape } from './TLBaseShape' /** @public */ export type TLGroupShapeProps = { [key in never]: undefined } /** @public */ export type TLGroupShape = TLBaseShape<'group', TLGroupShapeProps> /** @internal */ export const groupShapeProps: ShapeProps = {} /** @internal */ export const groupShapeMigrations = createShapePropsMigrationSequence({ sequence: [] })