/************
Processor: ts
************/

import * as __beyond_dep_ns_0 from 'pragmate-ui/base';
// definitions.ts
declare namespace ns_0 {
  import IPUIProps = __beyond_dep_ns_0.IPUIProps;
  export type IEvent = [{
    date: string;
    description: string;
    title: string;
    icon?: string;
  }];
  export interface IProps extends Omit<IPUIProps<IProps>, 'type'> {
    events: IEvent;
  }
}


// index.tsx
declare namespace ns_1 {
  /// <reference types="react" />
  import IProps = ns_0.IProps;
  export function VerticalLine({
    events,
    variant
  }: IProps): JSX.Element;
}


export import VerticalLine = ns_1.VerticalLine;

export declare const hmr: {on: (event: string, listener: any) => void, off: (event: string, listener: any) => void };