import { default as React } from 'react';
export interface NameFieldProps {
    /** The placeholder text of the input field if no value was specified */
    placeholder?: string;
    /** The value to display in input field */
    value?: string | undefined;
    /** The callback method that is triggered when the state changes */
    onChange?: (newValue: string) => void;
}
/**
 * Input field for a name.
 */
export declare const NameField: React.FC<NameFieldProps>;
