matrix-react-sdk
Version:
SDK for matrix.org using React
18 lines (17 loc) • 578 B
TypeScript
import React from "react";
import { ComponentProps } from "../../../Modal";
export declare enum ButtonClicked {
Primary = 0,
Cancel = 1
}
interface IProps {
onFinished(buttonClicked?: ButtonClicked): void;
analyticsOwner: string;
privacyPolicyUrl?: string;
primaryButton?: string;
cancelButton?: string;
hasCancel?: boolean;
}
export declare const AnalyticsLearnMoreDialog: React.FC<IProps>;
export declare const showDialog: (props: Omit<ComponentProps<typeof AnalyticsLearnMoreDialog>, "cookiePolicyUrl" | "analyticsOwner">) => void;
export {};