@carbon/ibm-products-web-components
Version:
Carbon for IBM Products Web Components
24 lines • 715 B
TypeScript
/**
* @license
*
* Copyright IBM Corp. 2026
*
* 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';
/**
* Add Select wrapper component - provides context for child components
* @element c4p-add-select
* @slot default - The main content area containing c4p-add-select-body
*/
declare class CDSAddSelect extends LitElement {
/**
* Whether this is a multi-select (checkboxes) or single-select (radio buttons)
*/
multi: boolean;
render(): import("lit-html").TemplateResult<1>;
static styles: any;
}
export default CDSAddSelect;
//# sourceMappingURL=add-select.d.ts.map