import React from 'react'; type Props = {} & T; declare const MockComponent: (_props: Props) => null; declare const MockRequiredComponent: (componentKey: string) => (_props: Props) => React.JSX.Element | null; export { MockComponent, MockRequiredComponent };