import { Type } from '@vendure/core';
export interface ProductImportPluginOptions {
    url: string;
    everyThisDay: number;
}
export declare class ProductImportPlugin {
    static options: ProductImportPluginOptions;
    static init(options: ProductImportPluginOptions): Type<ProductImportPlugin>;
}
