matrix-react-sdk
Version:
SDK for matrix.org using React
12 lines (11 loc) • 409 B
TypeScript
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 {};