import PropTypes from 'prop-types'; import { IconProps } from './Icon'; export declare const NotificationOffIcon: { ({ assistiveText, copyrightYear, size, color, overrides, ...props }: Omit): JSX.Element; propTypes: { /** * String to use as the `aria-label` for the icon. Set to an empty string if you * are rendering the icon with visible text to prevent accessibility label * duplication. * * Defaults to the icon name e.g. `BusinessPersonIcon` --> "Business Person" */ assistiveText: PropTypes.Requireable; /** * The color for the icon. * * Defaults to the current text color. */ color: PropTypes.Requireable; /** * The icon SVG metadata copyright year text */ copyrightYear: PropTypes.Requireable; /** * The override API */ overrides: PropTypes.Requireable any>; component: PropTypes.Requireable; styles: PropTypes.Requireable<(...args: any[]) => any>; }>>; Svg: PropTypes.Requireable any>; component: PropTypes.Requireable; styles: PropTypes.Requireable<(...args: any[]) => any>; }>>; }>>; /** * Control the size of the icon. * * Defaults to "medium" --> 24px */ size: PropTypes.Requireable>; }; };