/**
 * A type which implements {@link IIncludable} can be used with {@link IncludedItems} class
 */
export interface IIncludable {
    id: string;
}
