import type { PluginOptions } from 'gatsby';
import TildaApi from './api/tilda';
export interface PluginSettings {
    secret: string;
    publicKey: string;
    projectId: string;
    exclude: string[];
    skip?: boolean;
    downloadAssets?: boolean;
    api: TildaApi;
}
export declare const createPluginConfig: (pluginOptions: PluginOptions) => PluginSettings;
