import { ISimpleLink } from "./ISimpleLink";
export type IDetailedLinkDomain = '@SPO' | '@Teams' | '@External' | '@Custom' | 'N/A';
export interface IDomainDetails {
    domain: string;
    domainGroup: IDetailedLinkDomain;
}
/**
 * The purpose of IDetailedLink is to add more detailed context to the link such has what type of domain
 */
export interface IDetailedLink extends ISimpleLink {
    domain: string;
    domainGroup: IDetailedLinkDomain;
}
//# sourceMappingURL=IDetailedLink.d.ts.map