import { FunctionComponent } from "react"; import { Addon } from "../../types/addon"; interface WrapperProps { addons?: Addon[]; licenseKey?: string; } declare const Wrapper: FunctionComponent; export default Wrapper;