UNPKG

436 BTypeScriptView Raw
1import { IComponentAs } from '../IComponentAs';
2/**
3 * Composes two components which conform to the `IComponentAs` specification; that is, two
4 * components which accept a `defaultRender` prop, which is a 'default' implementation of
5 * a component which accepts the same overall props.
6 *
7 * @public
8 */
9export declare function composeComponentAs<TProps>(outer: IComponentAs<TProps>, inner: IComponentAs<TProps>): IComponentAs<TProps>;