/**
 * @license
 *
 * Copyright IBM Corp. 2025
 *
 * This source code is licensed under the Apache-2.0 license found in the
 * LICENSE file in the root directory of this source tree.
 */
import { LitElement } from 'lit';
import '@carbon/web-components/es/components/icon/index.js';
import { Kinds } from './checklist.types';
/**
 * @element c4p-checklist-icon
 * Represents checklist item status with different icons (unchecked, checked, indeterminate, error).
 */
declare class CDSChecklistIcon extends LitElement {
    /**
     * The icon to be displayed.
     * Values can be 'unchecked', 'indeterminate', 'checked', 'error', 'disabled'
  
     */
    kind: Kinds;
    render(): import("lit-html").TemplateResult<1>;
    static styles: any;
}
export default CDSChecklistIcon;
//# sourceMappingURL=checklist-icon.d.ts.map