import { GoogleAuth } from './oauth';
import { GoogleProvider } from './api';
import type { IDirectoryConfig, JacksonOption } from '../../../typings';
interface NewGoogleProviderParams {
    directories: IDirectoryConfig;
    opts: JacksonOption;
}
export declare const newGoogleProvider: (params: NewGoogleProviderParams) => {
    directory: GoogleProvider;
    oauth: GoogleAuth;
};
export {};
