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