import { FC, PropsWithChildren } from 'react'; interface StorybookColorModeLayoutProps extends PropsWithChildren { colorMode: "light" | "dark" | "sidebyside"; } export declare const StorybookColorModeLayout: FC; export {};