import React from 'react'; import { BoxProps } from '../index.js'; export type StoryWrapperProps = BoxProps & { label: string; children?: React.ReactNode; gap?: number; }; declare const StoryWrapper: React.FC; export default StoryWrapper;