import type { ConnectorMetadata } from '@logto/connector-kit'; export declare const defaultAuthorizationEndpoint = "https://bsky.social/oauth/authorize"; export declare const defaultMetadata: ConnectorMetadata; export declare const WELL_KNOWN_PATHS: { readonly OAUTH_CLIENT_METADATA: "/.well-known/oauth-client-metadata.json"; readonly OAUTH_AUTHORIZATION_SERVER: "/.well-known/oauth-authorization-server"; readonly OAUTH_PROTECTED_RESOURCE: "/.well-known/oauth-protected-resource"; readonly ATPROTO_DID: "/.well-known/atproto-did"; }; export declare const HTTP_CLIENT_CONFIG: { readonly timeout: 10000; readonly maxRedirects: 3; readonly maxResponseSize: number; }; export declare const PKCE_CONFIG: { readonly codeVerifierLength: 43; readonly codeChallengeMethod: "S256"; }; export declare const DPOP_CONFIG: { readonly algorithm: "ES256"; readonly keyUsages: readonly ["sign"]; readonly jtiLength: 16; }; //# sourceMappingURL=constant.d.ts.map