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