import * as React from 'react'; import { ItemPosition } from './components'; export interface Props { /** Content to display on the left */ left?: React.ReactNode; /** Content to display on the right */ right?: React.ReactNode; /** Connected content */ children?: React.ReactNode; } export interface State { focused?: ItemPosition | null; } export default function Connected({ children, left, right }: Props): React.ReactElement;