import type { SsoSamlRequest } from '../../../types';
import type { PublicAPIEndpoint } from '../../shared/handler.types';
type SsoSamlHandlers = {
    getSamlConfiguration: PublicAPIEndpoint<SsoSamlRequest.Get>;
    updateSamlConfiguration: PublicAPIEndpoint<SsoSamlRequest.Update>;
};
declare const ssoSamlHandlers: SsoSamlHandlers;
export = ssoSamlHandlers;
