import * as react_jsx_runtime from 'react/jsx-runtime'; interface MockComponentProps extends React.HTMLAttributes { children?: React.ReactNode; } declare const MockComponent: { ({ children, className, ...rest }: MockComponentProps): react_jsx_runtime.JSX.Element; displayName: string; }; export { MockComponent };