import { ISource } from '../core';
import { IApplication } from './';
export interface IApplicationReference {
    application: Partial<IApplication> & ISource;
}
export interface IApplicationReferences {
    /**
     * References array of type [[IApplicationReference]]
     */
    references: IApplicationReference[];
    /**
     * Link to this resource
     */
    self?: string;
}
//# sourceMappingURL=IApplicationReference.d.ts.map