export interface AsyncProps { import: () => Promise; name?: keyof T; props?: any; asyncProps?: () => Promise; children?: any; showDelay?: number; } export declare function Async({ import: request, name, props, asyncProps, children, showDelay, }: AsyncProps): AsyncGenerator;