import type { IconAPI, IconStates, LabelPropType } from '../../schema';
import type { JSX } from '../../stencil-public-runtime';
export declare class KolIcon implements IconAPI {
    render(): JSX.Element;
    _icons: string;
    _label: LabelPropType;
    state: IconStates;
    validateIcons(value?: string): void;
    validateLabel(value?: LabelPropType): void;
    componentWillLoad(): void;
}
