/// <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';
