import type { ComponentType } from 'react'; export declare const VOLTRA_COMPONENT_TAG: unique symbol; export type VoltraComponent> = ComponentType & { displayName: string; [VOLTRA_COMPONENT_TAG]: true; }; export type VoltraComponentOptions> = { toJSON?: (props: TProps) => Record; }; export declare const createVoltraComponent: >(componentName: string, options?: VoltraComponentOptions) => VoltraComponent; export declare const isVoltraComponent: >(component: ComponentType) => component is VoltraComponent; //# sourceMappingURL=createVoltraComponent.d.ts.map