import { TCameraOptions } from "../../types/scanview.types"; interface UseCustomWidgetProps { autoSwitchActiveColor?: string; autoSwitchInactiveColor?: string; progressBarColor?: string; searchingBarColor?: string; toastBackgroundColor?: string; toastTextColor?: string; widgetBackgroundColor?: string; messageFontSize?: string; messageTextColor?: string; messageBackgroundColor?: string; cameraOptions?: TCameraOptions; } declare const useCustomWidget: ({ autoSwitchActiveColor, autoSwitchInactiveColor, cameraOptions, messageBackgroundColor, messageFontSize, messageTextColor, progressBarColor, widgetBackgroundColor, searchingBarColor, toastBackgroundColor, toastTextColor, }: UseCustomWidgetProps) => void; export default useCustomWidget;