import type { Constellation, ConwayCell, Functor } from '@core/types';
interface TransformationInput {
    width: number;
    height: number;
    seedPattern: 'glider' | 'blinker' | 'beacon' | 'toad';
}
export declare const InitializeConwayCells: Functor<TransformationInput, Constellation<ConwayCell>>;
interface TransformationInputStepConway {
    constellation: Constellation<ConwayCell>;
    step: number;
}
export declare const StepConwayCells: Functor<TransformationInputStepConway, Constellation<ConwayCell>>;
export {};
