import type { Meta, StoryFn } from '@storybook/react'; import type { AppShellProps, ForwardProps, DrawerItemProps } from '@pega/cosmos-react-core'; declare const _default: Meta; export default _default; interface AppShellStoryProps { main?: AppShellProps['main']; appInfo?: AppShellProps['appInfo']; searchPage?: AppShellProps['searchPage']; banners?: AppShellProps['banners']; cases?: AppShellProps['cases']; caseLinks?: AppShellProps['links']; createLinks?: AppShellProps['caseTypes']; recentItems?: (DrawerItemProps & ForwardProps)[]; utils?: AppShellProps['utils']; onLinkClick?: (name: string) => void; collapsedHoverMenus?: boolean; appName?: AppShellProps['appInfo']['appName']; appNameHidden?: AppShellProps['appInfo']['appNameHidden']; portalName?: AppShellProps['appInfo']['portalName']; href?: AppShellProps['appInfo']['href']; imageSrc?: AppShellProps['appInfo']['imageSrc']; fullImageSrc?: AppShellProps['appInfo']['fullImageSrc']; withSearch?: boolean; appHeader?: AppShellProps['appHeader']; progress?: AppShellProps['progress']; notificationsEmpty?: boolean; notificationsLoading?: boolean; casesTypesEmpty?: boolean; recentsEmpty?: boolean; recentsLoading?: boolean; pinsLoading?: boolean; showCases?: boolean; } export declare const AppShellDemo: StoryFn; interface ConfigurableAppShellProps { navColor?: string; headerColor?: string; } export declare const ConfigurableAppShell: StoryFn; //# sourceMappingURL=AppShell.stories.d.ts.map