import { PropsWithChildren } from 'react';
export interface FieldItemBaseProps {
    value: string;
}
export interface FieldItemProps extends PropsWithChildren<FieldItemBaseProps> {
}
export declare const FieldItem: {
    (props: FieldItemProps): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
