import type { Meta, StoryObj } from '@storybook/react'; import { TwoColumnLayout } from './TwoColumnLayout'; /** * Display the contents in two column layout. Specify height of the direct parent frame (eg. `div`, `iframe`) so it can span to parent's 100% height. Each column is a flexbox with `flex-direction='column'`. Give the direct child item `flex='1'` for it to span to available space. ```javascript import { TwoColumnLayout } from "@galaxy-ds/core"; ``` */ declare const meta: Meta; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const WithGutter: Story;