import { EventEmitter } from '../../stencil-public-runtime';
import { ICheckbox, ICheckboxEvents } from './checkbox.types';
/**
 * @part icon - The icon element.
 */
export declare class KvCheckbox implements ICheckbox, ICheckboxEvents {
    /** @inheritdoc */
    checked?: boolean;
    /** @inheritdoc */
    disabled?: boolean;
    /** @inheritdoc */
    indeterminate?: boolean;
    /** @inheritdoc */
    clickCheckbox: EventEmitter<void>;
    private getIconName;
    private onClick;
    render(): any;
}
