import { RestCommand } from "../../types.js"; //#region src/rest/commands/auth/providers.d.ts interface ReadProviderOutput { name: string; driver: string; label?: string | null; icon?: string | null; } /** * List all the configured auth providers. * * @returns Array of configured auth providers. */ declare const readProviders: (sessionOnly?: boolean) => RestCommand; //#endregion export { ReadProviderOutput, readProviders }; //# sourceMappingURL=providers.d.ts.map