export const VariableContext: React.Context<{}>; export function Variable({ variable, fallback }: { variable: any; fallback: any; }): any; export function If({ present, children }: { present: any; children: any; }): JSX.Element; export function Else({ children }: { children: any; }): JSX.Element; import React from "react";