import type { FC } from 'react'; import './index.less'; interface VariableNameInputPopoverContentProps { value?: string; handleVariableNameChange: (variableName?: string) => void; checkVariableNameAvailable: (variableName?: string) => boolean; cancel: () => void; } export declare const VariableNameInputPopoverContent: FC; interface VariableNameInputProps { value?: string; handleVariableNameChange: (variableName?: string) => void; checkVariableNameAvailable: (variableName?: string) => boolean; classname?: string; } export declare const VariableNameInput: FC; export {}; //# sourceMappingURL=variable-name-input.d.ts.map