import React from 'react';
import type { FormSchemaType } from '../store/store';
import type { ExportedSchemaType } from './use-data-exporter';
export declare const useRfaDataConverter: () => {
    handlers: {
        dataToExport: (store: FormSchemaType) => ExportedSchemaType;
        dataToStore: (data: ExportedSchemaType) => FormSchemaType;
        registerComponents: (components: React.FC<any>[]) => void;
    };
    state: {
        isExportedJson: (data: FormSchemaType | ExportedSchemaType) => data is ExportedSchemaType;
    };
};
