import { type StyleValue } from 'vue';
import { type DefaultProps } from '../config';
export interface IconProps {
    rootStyle?: StyleValue;
    rootClass?: string;
    name?: string;
    family?: string;
    size?: string;
    color?: string;
    separate?: boolean;
}
export declare const defaultIconProps: () => DefaultProps<IconProps>;
export interface IconEmits {
    (e: 'click', event: any): void;
}
