import { FC, PropsWithChildren } from 'react'; interface StorybookGlobalLayoutProps extends PropsWithChildren { /** https://storybook.js.org/docs/web-components/configure/story-layout */ layout: "centered" | "padded" | "fullscreen"; } export declare const StorybookGlobalLayout: FC; export {};