export interface ObjectProps { arg: { name: string; value: Record | Array; }; onChange: (value: any) => void; isPristine: boolean; } declare const ObjectType: { ({ arg, onChange, isPristine }: ObjectProps): import("react/jsx-runtime").JSX.Element; serialize(object: any): string; deserialize(value: any): any; }; export default ObjectType;