import * as React from 'react'; import { FlexProps } from '../../primitives/Flex'; import { Field } from '../Field'; interface JSONInputProps extends Omit, Pick { value?: string; disabled?: boolean; onChange?: (value: string) => void; } interface JSONInputRef extends Partial { focus(): void; } declare const JSONInput: React.ForwardRefExoticComponent & React.RefAttributes>; export { JSONInput }; export type { JSONInputProps, JSONInputRef }; //# sourceMappingURL=JSONInput.d.ts.map