import { BoxProps } from "../components/Box"; interface StoryProps extends BoxProps { title?: string; } declare const Story: ({ className, title, children }: StoryProps) => JSX.Element; export default Story;