import React from 'react'; import { TextProps } from '../FormikForm/FormikForm'; export interface InputWithIdentifierProps { formik: any; inputGroupProps?: Omit; /** * @default name */ inputName?: string; /** * @default identifier */ idName?: string; /** * @default Name */ inputLabel?: string; /** * @default ID */ idLabel?: string; /** * Should the user be allowed to edit the identifier? * @default true */ isIdentifierEditable?: boolean; /** * @default 128 */ maxInput?: number; /** * @default true */ useUnversialToolTipId?: boolean; /** * callback function that gets triggered when * identifier changes, either directly or due to changes in name field */ onIdentifierChangeCallback?: (identifier: string) => void; } export declare function getIdentifierFromName(str: string): string; export declare const InputWithIdentifier: React.FC;