import { ComponentType } from 'react' /** @public */ export type TLShapeErrorFallbackComponent = ComponentType<{ error: any }> /** @internal */ export const DefaultShapeErrorFallback: TLShapeErrorFallbackComponent = () => { return
}