UNPKG

matrix-react-sdk

Version:
12 lines (11 loc) 409 B
import React, { ComponentProps } from "react"; import LearnMore from "../../elements/LearnMore"; import { DeviceSecurityVariation } from "./types"; type Props = Omit<ComponentProps<typeof LearnMore>, "title" | "description"> & { variation: DeviceSecurityVariation; }; /** * LearnMore with content for device security warnings */ export declare const DeviceSecurityLearnMore: React.FC<Props>; export {};