import * as React from 'react'; import type { AlertVariations, ViewProps } from '../types'; interface AlertIconProps extends Pick { variation?: AlertVariations; ariaHidden?: boolean; } /** * @internal For internal Amplify UI use only. May be removed in a future release. */ export declare const AlertIcon: { ({ variation, ariaHidden, ariaLabel, role, }: AlertIconProps): React.JSX.Element | null; displayName: string; }; export {};