/**
 * Describes the options declared by the plugin.
 */
export interface PluginOptions {
    /**
     * Configures the autogenerated `_sidebar.md file`.
     */
    sidebar: Sidebar;
}
/**
 *
 */
export interface Sidebar {
    autoConfiguration: boolean;
    heading: string;
}
