import type { PluggableList, Preset as RemarkConfig } from 'unified';
import 'remark-stringify';
declare const remarkSharedConfig: RemarkConfig;
/**
 * **Remark Shared Configuration**
 * @see [@kitschpatrol/remark-config](https://github.com/kitschpatrol/shared-config/tree/main/packages/remark-config)
 * @see [@kitschpatrol/shared-config](https://github.com/kitschpatrol/shared-config)
 * @example
 * ```js
 * export default remarkConfig({
 *   rules: [
 *		['remark-lint-first-heading-level', 2],
 *		['remarkValidateLinks', { repository: false }],
 *	],
 * })
 * ```
 */
export declare function remarkConfig(options?: {
    plugins?: PluggableList | undefined;
    rules?: Array<[string, unknown]>;
    settings?: RemarkConfig['settings'];
}): RemarkConfig;
export default remarkSharedConfig;
