import React from 'react'; import { ScaleType, AlignItemsType, JustifyContentType } from '../types'; export interface InlineProps { scale?: ScaleType; alignItems?: AlignItemsType; justifyContent?: JustifyContentType; children: React.ReactNode; fullWidth?: boolean; } declare const Inline: React.FC; export default Inline;