UNPKG

alinea

Version:
9 lines (8 loc) 465 B
import type { FunctionComponent, PropsWithChildren } from 'react'; import '../global.css'; export interface UIStoryProps extends PropsWithChildren<{}> { fullWidth?: boolean; fullHeight?: boolean; } export declare function UIStory({ fullWidth, fullHeight, children }: UIStoryProps): import("react/jsx-runtime").JSX.Element; export declare function uiDecorator(props?: UIStoryProps): ((Story: FunctionComponent) => import("react/jsx-runtime").JSX.Element)[];