import * as React from 'react'; import { CommonProps } from '../../utilities/commonProps'; declare type Props = { /** * メインコンテンツ(左側) */ children?: React.ReactNode; /** * サイドコンテンツ(右側) */ sideContent: React.ReactNode; /** * 左右で高さが違う場合の揃え方 */ verticalAlign?: 'top' | 'bottom' | 'middle'; } & CommonProps; /** * 関連機能のボタン等を右側に配置するために使用するコンポーネントです * * - 左右にボタン等を振り分けて配置するときのほか、右にボタンだけ置きたいというときにも使用できます */ declare const WithSideContent: React.FC; export default WithSideContent;