import { OpenIDProvider } from '@salte-auth/salte-auth';
export declare class Azure extends OpenIDProvider {
    constructor(config: Azure.Config);
    get name(): string;
    get login(): string;
    get logout(): string;
}
export interface Azure {
    config: Azure.Config;
}
export declare namespace Azure {
    interface Config extends OpenIDProvider.Config {
        /**
         * The domain of your Azure AD Instance.
         *
         * @example 'https://login.microsoftonline.com/tenant-id'
         */
        url: string;
    }
}
