import * as React from 'react';
import { JobStopModel } from '@lml/cosmo-ts-data';
import { StylableComponentProps } from 'cosmoui';
export interface JobStopTimeSlotProps extends StylableComponentProps {
    id?: string;
    refId: string;
    stop: JobStopModel;
}
export declare const JobStopTimeSlot: React.ComponentClass<JobStopTimeSlotProps>;
