import { Config } from '@lucidcms/core/types';

interface PluginOptions {
	collections: Array<{
		collectionKey: string;
		useTranslations?: boolean;
		displayFullSlug?: boolean;
		// fallbackSlugSource?: string;
	}>;
}

declare const lucidPagesPlugin: (pluginOptions: PluginOptions) => (config: Config) => Promise<{
    key: string;
    lucid: string;
    config: Config;
}>;

export { lucidPagesPlugin as default };
