export interface SecurityContextParamRegistrationHandler {
    update: (newVal: string | number) => void;
    unregister: () => void;
}
