export type EmptyOptions = Record<string, never>;
export type Step<key extends StepNames, options extends Record<string, unknown>> = {
    key?: string;
    type: key;
    options?: options;
};
export declare enum StepNames {
    Welcome = "welcome",
    FacePhoto = "facePhoto",
    FaceVideo = "faceVideo",
    FaceMotion = "faceMotion",
    Document = "document",
    ProofOfAddress = "proofOfAddress",
    Complete = "complete"
}
