@cbpds/web-components
Version:
Web components for the CBP Design System.
27 lines (26 loc) • 742 B
TypeScript
import { EventEmitter } from '../../stencil-public-runtime';
export declare class SegmentedButtonGroup {
private buttongroup;
private initialValue;
host: HTMLElement;
name: string;
value: any;
multiple: boolean;
accessibilityText: string;
disabled: boolean;
sx: any;
segmentedButtonGroupClick: EventEmitter;
reset(): Promise<void>;
handleComponentLoad({ detail: { nativeElement: element, host } }: {
detail: {
nativeElement: any;
host: any;
};
}): void;
handleButtonClick(e: any): void;
watchValueHandler(newValue: any): void;
setValueFromButtons(): void;
componentWillLoad(): void;
componentDidLoad(): void;
render(): any;
}