import type { ViewStyle } from 'react-native'; export declare const BarcodeFormat: { readonly AZTEC: "AZTEC"; readonly CODE128: "CODE_128"; readonly PDF417: "PDF_417"; readonly QR: "QR_CODE"; readonly EAN13: "EAN_13"; readonly UPCA: "UPC_A"; }; export type BarcodeFormatValue = (typeof BarcodeFormat)[keyof typeof BarcodeFormat]; export type EncodedValue = { base64: string; messageEncoded: string; }; export type BarcodeCreatorProps = { format?: BarcodeFormatValue; value?: string; encodedValue?: EncodedValue; background?: string; foregroundColor?: string; style?: ViewStyle; }; export declare const BarcodeCreatorView: ({ encodedValue, value, format, ...props }: BarcodeCreatorProps) => JSX.Element; //# sourceMappingURL=index.d.ts.map