import React, { type LegacyRef } from 'react'; import { type ViewStyle, type ViewProps } from 'react-native'; import LottieView, { type AnimationObject, type LottieViewProps } from 'lottie-react-native'; import { type HeaderProps } from './HeaderScreen'; type Props = { navigation?: any; goBack?: Function; style?: ViewStyle; contentStyle?: ViewStyle; cameraStyle?: ViewStyle; shouldScan: boolean; ComponentHeader?: React.ReactNode | React.Component | Function; headerProps?: HeaderProps; markProps?: Omit & { ref?: LegacyRef | undefined; source?: string | AnimationObject | { uri: string; }; } & { containerProps?: ViewProps; }; onScanBarcode: (result: any) => void; onPressLeftButton?: (() => void) | undefined; }; declare const _default: React.MemoExoticComponent<(props: Props) => React.JSX.Element>; export default _default; //# sourceMappingURL=index.d.ts.map