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