import { type FormProps as RACFormProps } from 'react-aria-components'; import type { AriaLabelingProps, CommonProps } from '../types.js'; export interface FormProps extends CommonProps, AriaLabelingProps, Pick { } /** * A group of inputs that allows users to submit data to a server. * * See [forms guide](https://ui.cimpress.io/dev-guides/forms/). */ declare const _Form: (props: FormProps & import("react").RefAttributes & import("../../with-style-props.js").StyleProps) => import("react").JSX.Element | null; export { _Form as Form }; //# sourceMappingURL=form.d.ts.map