import React from 'react'; import { type IconProps } from './core'; interface IconBadgeCheckFilledProps extends IconProps { base?: '16' | '24'; } /** * The checkmark icon in a badge is always `color--white` here, but the background can be configured via `color` or * applying a color to a parent element. */ export declare function IconBadgeCheckFilled({ base, ...props }: IconBadgeCheckFilledProps): React.JSX.Element; export {};