import * as React from "react"; export interface InputVerificationCodeProps { onCompleted(code: string): void; btnLabel?: string; } declare const InputVerificationCode: ({ onCompleted, btnLabel, }: InputVerificationCodeProps) => React.ReactElement; export default InputVerificationCode;