import { Component as OmiComponent } from 'omi';
import type { AntdIconProps } from '../components/types';
import '../components/AntdIcon';
declare global {
    namespace JSX {
        interface IntrinsicElements {
            ['o-setting-outlined']: Omi.Props & Partial<AntdIconProps>;
        }
    }
}
export default class SettingOutlined extends OmiComponent<AntdIconProps> {
    static displayName: string;
    static tagName: string;
    static inheritAttrs: boolean;
    render(props: Omi.OmiProps<AntdIconProps>): JSX.Element;
}
