import { DDSElement } from "../../base/index.js"; import { MergeVariantProps } from "../../type-utils.js"; declare const cvaContainer: (props?: ({ status?: "inprogress" | "unfinished" | "finished" | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string; type ProgressIndicatorItemVariantProps = MergeVariantProps; /** * The progress indicator item component is a child element within the `daikin-progress-indicator` component, this represents one of the tasks that the user is working on. * * In addition to the name of each task, the progress of the task can be indicated, such as whether it is in progress or has not yet started. * * Hierarchy: * - `daikin-progress-indicator` > `daikin-progress-indicator-item` * * @slot - A slot for label content. * @slot description - A slot for description content. * * @example * * ```js * import "@daikin-oss/design-system-web-components/components/progress-indicator-item/index.js"; * ``` * * ```html * * Progress indicator label * Progress indicator description * * ``` */ export declare class DaikinProgressIndicatorItem extends DDSElement { static readonly styles: import('lit').CSSResult; /** * Status of the progress indicator item. * Controlled by `daikin-progress-indicator`. * * @default "unfinished" */ status: ProgressIndicatorItemVariantProps["status"]; render(): import('lit-html').TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { "daikin-progress-indicator-item": DaikinProgressIndicatorItem; } } export default DaikinProgressIndicatorItem;