/// <reference types="react" />
export interface EditableFieldProps extends React.HTMLAttributes<HTMLElement> {
    passProps?: object;
    /** Support @testing-library/react `screen.getByTestId` */
    'data-testid'?: string;
    label: string;
    value: string;
    onUpdate: (newValue: string) => void;
}
