import { FieldWrapper as RaftyFieldWrapper } from "@rafty/corp"; import type { PropsWithChildren } from "react"; export type FieldWrapper = PropsWithChildren<{ className?: RaftyFieldWrapper["className"]; }>; export declare function FieldWrapper({ className, children }: FieldWrapper): import("react/jsx-runtime").JSX.Element;