import { ISource } from '../core/index.js';
import { IApplication } from './index.js';
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