import { type FC } from '@lynx-js/react';
import type { ViewProps } from '@lynx-js/types';
import type { BindInput } from '../hooks/useForm.jsx';
type FieldProps = {
    name: string;
    bindinput?: BindInput;
} & Partial<ViewProps>;
export declare const Field: FC<FieldProps>;
export {};
