import AuthRecipe from "../authRecipe"; import { NormalisedInputType, RecipeInterface, InputType, UserInput, PreAndPostAPIHookAction } from "./types"; import { CreateRecipeFunction } from "../../types"; export default class Recipe extends AuthRecipe { static instance?: Recipe; static RECIPE_ID: "webauthn"; recipeImplementation: RecipeInterface; constructor(config: InputType); static init(config?: UserInput): CreateRecipeFunction; static getInstanceOrThrow(): Recipe; static reset(): void; } export { Recipe };