/**
 * @file 用来条形码
 */
import React from 'react';
import type { RendererProps } from 'jamis-core';
import type { BarCodeSchema } from './types';
interface BarCodeProps extends RendererProps, Omit<BarCodeSchema, 'type' | 'className'> {
}
export declare class BarCodeField extends React.Component<BarCodeProps, Record<string, any>> {
    render(): JSX.Element;
}
export declare class BarCodeFieldRenderer extends BarCodeField {
}
export {};
