import { type CanvasTextAlign, type BarcodeFormat, type BarcodeTextPosition, type CanvasFontStyle, type CanvasFontWeight } from '../../utils'; import { type DefaultProps } from '../config'; export interface BarcodeProps { value?: string; format?: BarcodeFormat; width?: number; height?: number; color?: string; background?: string; displayValue?: boolean; textPosition?: BarcodeTextPosition; textAlign?: CanvasTextAlign; textMargin?: number; fontStyle?: CanvasFontStyle; fontWeight?: CanvasFontWeight; fontSize?: number; fontFamily?: string; margin?: number; marginTop?: number; marginBottom?: number; marginLeft?: number; marginRight?: number; } export declare const defaultBarcodeProps: DefaultProps; export interface BarcodeEmits { }