import { type CSSProperties, type SVGProps } from 'react'; import { type CssLength, type CssTime } from '../../../utils/css'; type TouchIdIconProps = Omit, 'children' | 'color' | 'strokeWidth'> & { title?: string; size?: CssLength; color?: string; strokeWidth?: CssLength; duration?: CssTime; active?: boolean; animated?: boolean; mutedOpacity?: number; basePathClassName?: string; scanPathClassName?: string; }; type TouchIdIconStyle = CSSProperties & { '--touch-id-icon-color'?: string; '--touch-id-icon-stroke-width'?: string; '--touch-id-icon-duration'?: string; '--touch-id-icon-muted-opacity'?: string; }; declare const TouchIdIcon: ({ className, style, title, size, width, height, color, strokeWidth, duration, active, animated, mutedOpacity, basePathClassName, scanPathClassName, role, "aria-hidden": ariaHidden, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledBy, ...props }: TouchIdIconProps) => import("react/jsx-runtime").JSX.Element; export { TouchIdIcon }; export type { TouchIdIconProps, TouchIdIconStyle };