export declare type AssertAccessTokenScope = (scope: string) => void; export declare const makeAssertAccessTokenScope: ({ scopes: supportedScopes }: { scopes: string[]; }) => { assertAccessTokenScope: AssertAccessTokenScope; };