import type { State } from "../state/state.js"; import type { ParentTrait } from "../traits/parent.js"; import { Command, Target, TargetHolder } from "../command.js"; export declare class ShuffleChildren extends Command { target: TargetHolder; constructor(container: Target); execute(state: State): Promise; undo(state: State): Promise; }