import Compound from './compound'; import type { AbstractState, Schema } from '../types'; declare class CompoundWithState> extends Compound { constructor(state: State, parent: Schema); } export default CompoundWithState;