import { AuthController, DataSourceDelegate, FireCMSPlugin } from "../types";
export declare const DEFAULT_SERVER_DEV = "https://api-kdoe6pj3qq-ey.a.run.app";
export declare const DEFAULT_SERVER = "https://api-drplyi3b6q-ey.a.run.app";
export type AccessResponse = {
    blocked?: boolean;
    message?: string;
};
export interface UseProjectLogParams {
    apiKey?: string;
    authController: AuthController;
    dataSourceDelegate: DataSourceDelegate;
    plugins?: FireCMSPlugin<any, any, any>[];
}
export declare function useProjectLog({ authController, dataSourceDelegate, plugins, apiKey }: UseProjectLogParams): AccessResponse | null;
