import { FunctionComponent } from 'react';
import { IOptions, ComponentFunction } from './model';
declare function define<P = {}>(tagName: string, child: ComponentFunction<P>, options?: IOptions): FunctionComponent<P>;
export { define };
