import { TStep } from "../types/TStep";
import { TWizardOptions } from "../types/TWizardOptions";
import { TWizardType } from "../types/TWizardType";
export { getInitialStep };
declare const getInitialStep: (args: {
    options: TWizardOptions;
    wizardType: TWizardType;
}) => TStep;
