import type { IInteraction } from './i-interaction'; import type { IInteractionOption } from './i-interaction-option'; export interface IInteractionFactory { create(option?: IInteractionOption): IInteraction; }