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 {};
