1 | import { FunctionalComponent } from 'vue';
|
2 | import { AntdIconProps } from '../components/AntdIcon';
|
3 | export interface BellTwoToneIconType extends FunctionalComponent<AntdIconProps> {
|
4 | displayName: string;
|
5 | }
|
6 | declare const BellTwoTone: BellTwoToneIconType;
|
7 | export default BellTwoTone;
|