import { type FunctionalComponent as FC } from '../../stencil-public-runtime';
import type { InternalIconProps } from '../../schema';
export type IconProps = InternalIconProps & {
    class?: string;
    style?: {
        [key: string]: string;
    };
    onClick?: (event: MouseEvent) => void;
};
declare const KolIconFc: FC<IconProps>;
export default KolIconFc;
