import { BakeryBarcode1DProps } from '../common/models/barcode-1d-props';

export interface BakeryOthercodeProps extends BakeryBarcode1DProps {
    text: string;
}
export declare function BakeryOthercode({ scale, foregroundColor, backgroundColor, offsetX, offsetY, thickness, label, font, displayChecksum, text }: Readonly<BakeryOthercodeProps>): import("react").JSX.Element;
