import Segment from './Segment';

interface SegmentPool {
    video: Array<Segment>
    audio: Array<Segment>
}

export default SegmentPool;
