import * as React from "react"; import type { FieldProp } from "../../props/components/data-entry.prop.js"; export type { FieldProp, FieldProp as FieldProps } from "../../props/components/data-entry.prop.js"; /** Label + optional description beside a checkbox/radio/switch control. */ export declare function Field({ id, label, labelAddon, description, error, className, children, }: FieldProp): React.JSX.Element;