import { type StyleValue } from 'vue';
export interface IconProps {
    rootStyle?: StyleValue;
    rootClass?: string;
    name?: string;
    family?: string;
    size?: string;
    color?: string;
    separate?: boolean;
}
export declare const defaultIconProps: {
    name: string;
    family: string;
    separate: IconProps["separate"];
};
