import type { HttpHandler } from 'msw'; import type { Meta } from '@storybook/react'; import ContentSidebar from '../../ContentSidebar'; export declare const basic: { args: { defaultView: string; docGenSidebarProps: { enabled: boolean; isDocGenTemplate: boolean; checkDocGenTemplate: (...args: any[]) => void; getDocGenTags: () => Promise<{ pagination: {}; data: { tag_content: string; tag_type: string; json_paths: string[]; }[]; }>; }; }; }; export declare const withModernizedBlueprint: { args: { enableModernizedComponents: boolean; defaultView: string; docGenSidebarProps: { enabled: boolean; isDocGenTemplate: boolean; checkDocGenTemplate: (...args: any[]) => void; getDocGenTags: () => Promise<{ pagination: {}; data: { tag_content: string; tag_type: string; json_paths: string[]; }[]; }>; }; }; }; declare const meta: Meta & { parameters: { msw: { handlers: HttpHandler[]; }; }; }; export default meta;