import React from "react";
interface Props {
    feature: string;
    children: React.ReactNode;
    isPro: boolean;
    variant?: "page" | "card";
}
export default function ProGate({ feature, children, isPro, variant }: Props): React.JSX.Element;
export {};
