export declare function createAuthorizationState(input: { issuer: string; requireIssuer: boolean; }): string; export declare function parseAuthorizationState(value: string | null): { issuer: string; requireIssuer: boolean; } | null;