interface IGetVmfaCodeFromWindVaneProps { onSuccess: (vmfaCode: string) => void; onFail: (errorMessage: string) => void; onFinally: () => void; } export default function getVmfaCodeFromWindVane({ onFail, onSuccess, onFinally }: IGetVmfaCodeFromWindVaneProps): void; export {};