import { EventEmitter } from '../../../stencil-public-runtime';
export declare class LabDsToast {
  message: string;
  label: string;
  action: () => void;
  actionLabel: string;
  state: 'success' | 'error' | 'warning';
  size: 'small' | 'medium';
  openToast: boolean;
  isOpen: boolean;
  closeToast: EventEmitter<boolean>;
  states: {
    success: {
      icon: string;
    };
    error: {
      icon: string;
    };
    warning: {
      icon: string;
    };
  };
  timeOut: any;
  watchPropHandler(): void;
  handleClose(): void;
  render(): any;
}
