import {
  InkMutatorProps,
} from './InkMutatorProps';
import {
  ReactNode,
} from 'react';

export type InkMutator = (
  args: InkMutatorProps,
) => ReactNode;
