import * as React from 'react';
export interface Props {
    title?: React.ReactNode;
    label?: React.ReactNode;
    actionLabel?: React.ReactNode;
    value: string;
    placeholder?: string;
    readonly?: boolean;
    onChange: (value: string) => void;
    onSubmit: () => void;
    onClick?: () => void;
    onTabBack?: () => void;
    onDeleteBefore?: () => void;
}
export declare const CommandArgString: React.FC<Props>;
