export interface BarcodePropertyOption {
    name: string;
    value: string;
    description: string;
    restrictedTo: string[];
    fieldType?: 'string' | 'color';
    placeholder?: string;
}
export declare const barcodeProperties: BarcodePropertyOption[];
