import * as React from "react";
import type { HoneypotInputProps } from "../server/honeypot.js";
type HoneypotContextType = Partial<HoneypotInputProps>;
export declare function HoneypotInputs({
  label,
}: {
  label?: string;
}): JSX.Element;
export type HoneypotProviderProps = HoneypotContextType & {
  children: React.ReactNode;
};
export declare function HoneypotProvider({
  children,
  ...context
}: HoneypotProviderProps): JSX.Element;
export {};
