import { EventEmitter } from '../../../stencil-public-runtime';
export declare class LabDsSegmentedControl {
  options: Array<{
    label: string;
    value: string;
    icon: string;
  }>;
  selectedSegmented: string;
  value: string;
  handleSelectedValue: EventEmitter;
  handleSelectedValueEmit(value: string): void;
  componentDidLoad(): void;
  watchValue(newValue: string): void;
  render(): any;
}
