/// <reference types="react" />
import { ComponentType } from 'react';
export declare type InputType = string | ComponentType | [ComponentType, {
    [name: string]: any;
}] | [string, {
    [name: string]: any;
}];
export interface Props {
    components: InputType[];
    children?: any;
}
declare const Compose: ComponentType<Props>;
export default Compose;
