/// import { AlignEdge } from '../common/alignment'; export interface IHostProps { mobXDevTools?: boolean; title?: string; hr?: boolean; padding?: number | string | Array; align?: AlignEdge; width?: number | string; height?: number | string; background?: string | number | boolean; backdrop?: string | number | boolean; cropMarks?: boolean; border?: string | number | boolean; styles?: any; } export interface IComponentHostProps { story: Function; } declare const ComponentHost: (props: IComponentHostProps & IHostProps) => JSX.Element; export default ComponentHost;