import React from 'react'; import { type IconProps } from './core'; interface IconLightbulbFilledProps extends IconProps { base?: '12' | '16' | '24'; } export declare function IconLightbulbFilled({ base, ...props }: IconLightbulbFilledProps): React.JSX.Element; export {};