import { type RspressPlugin, type UserConfig } from '@rspress/core';
export type * from './walk.ts';
export type * from './type.ts';
export interface AutoSidebarPluginOptions {
    ignore?: boolean;
    export?: boolean;
    collapsed?: boolean;
}
export declare const autoSidebar: (config: UserConfig, { ignore, export: export_ }: AutoSidebarPluginOptions) => Promise<UserConfig>;
export declare const autoSidebarPlugin: (options?: AutoSidebarPluginOptions) => RspressPlugin;
