import { BakeryBarcode2DProps } from '../common/models/barcode-2d-props';

export interface BakeryPdf417Props extends BakeryBarcode2DProps {
    quietZone?: boolean;
    compact?: boolean;
    column?: number | string;
    errorLevel?: number | string;
    ratio?: number | string;
    text: string;
}
export declare function BakeryPdf417({ scale, foregroundColor, backgroundColor, offsetX, offsetY, quietZone, compact, column, errorLevel, ratio, text }: Readonly<BakeryPdf417Props>): import("react").JSX.Element;
