import type { PopoverProps } from '@blueprintjs/core'; import type { ReactNode } from 'react'; type InputType = 'number' | 'text'; interface FieldProps { value: number | string; inputType?: InputType; onChange: (value: any) => void; } interface FieldEditionsProps extends FieldProps { children: ReactNode; PopoverProps?: PopoverProps; } export declare function FieldEdition(props: FieldEditionsProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=FieldEdition.d.ts.map