/** * html/form — variant-styled
primitive. * This replaces nativeForm.tsx — forms live here. */ import { type FormHTMLAttributes } from "react"; import { type VariantProps } from "class-variance-authority"; export declare const formElVariants: (props?: ({ gap?: "none" | "sm" | "lg" | "xs" | "md" | "xl" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export type FormElProps = FormHTMLAttributes & VariantProps; export declare const FormEl: import("react").ForwardRefExoticComponent & VariantProps<(props?: ({ gap?: "none" | "sm" | "lg" | "xs" | "md" | "xl" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string> & import("react").RefAttributes>; //# sourceMappingURL=form.d.ts.map