import type { PropsWithChildren } from 'react'; export type RequiredProps = PropsWithChildren<{ className?: string; antd?: boolean; }>; declare const Component: { ({ antd, children, className }: RequiredProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Component;