interface IOptions {
    engineId: string;
    apiKey: string;
}
/**
 * GoogleCustomSearch認証情報
 */
declare class CustomSearchCredentials {
    readonly engineId: string;
    readonly apiKey: string;
    constructor(options: IOptions);
}
export { CustomSearchCredentials };
