import { IQueue } from './IQueue';
export interface IPriorityQueue<T> extends IQueue<T> {
}
