declare class EditorAuthCore { auth(clientId: string): Promise; get clientId(): string; getAuthState(): "PENDING" | "SUCCESS" | "ERROR"; getFeatureEnabled(feature: string): boolean; } declare const EditorAuth: Readonly; export { EditorAuth };