import { InputProps } from '../inputv2/inputv2'; import { UseMutationResult } from 'react-query'; type InlineInputForm = { value: string; }; type InlineInputProps = { defaultValue?: string; confirmationModal?: { title: JSX.Element; body: JSX.Element; }; changeMutation: UseMutationResult; } & InputProps; export declare const InlineInput: ({ defaultValue, confirmationModal, changeMutation, ...props }: InlineInputProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=InlineInput.d.ts.map