import { Component } from 'react'; import '../../../style.scss'; interface AuIconSetterProps { value: string; type: string; defaultValue: string; placeholder: string; onChange: (icon: string | object) => undefined; } export default class extends Component { render(): JSX.Element; } export {};