import { 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)[];
