@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
17 lines (16 loc) • 579 B
TypeScript
/// <reference types="react" />
import { FlexboxProps } from 'react-layout-kit';
export interface StoryBookProps extends FlexboxProps {
/**
* @description The Leva store instance to be used by the component
* @type levaStore
*/
levaStore: any;
/**
* @description If use padding around component
*/
noPadding?: boolean;
}
export declare const StoryBook: import("react").ForwardRefExoticComponent<StoryBookProps & import("react").RefAttributes<HTMLDivElement>>;
export default StoryBook;
export { useControls, useCreateStore } from 'leva';