import { h } from "preact"; type Props = { src: string; secret: string; }; declare const OTPCreationDetails: ({ src, secret }: Props) => h.JSX.Element; export default OTPCreationDetails;