blob: 9470a4698a27e5755b24062aa99cae997530526e [file] [log] [blame]
import { SFC, ComponentType } from 'react';
interface Props {
as: ComponentType<any>;
getInitialProps?: (props: any) => any;
}
export declare const AsyncComponent: SFC<Props>;
export {};