import { type ButtonHTMLAttributes, type Ref } from 'react'; export type NeumorphicScreenScannerProps = Omit, 'children' | 'color'> & { active?: boolean; baseColor?: string; hue?: number; label?: string; ref?: Ref; size?: number | string; }; export declare const NeumorphicScreenScanner: ({ "aria-label": ariaLabel, active, baseColor, className, hue, label, ref, size, style, type, ...props }: NeumorphicScreenScannerProps) => import("react/jsx-runtime").JSX.Element;