/**
 * Describes the options declared by the plugin.
 */
export interface PluginOptions {
    /**
     * Configures the autogenerated Docusaurus sidebar.
     */
    sidebar?: Sidebar;
}
export interface Sidebar {
    autoConfiguration: boolean;
    pretty: boolean;
    typescript: boolean;
    deprecatedItemClassName: string;
}
