import './equal-height.css'; import { ElementType, Ref, ComponentPropsWithoutRef, PropsWithChildren } from 'react'; export type Props = { name: string; as?: T; placeholder?: boolean; disable?: boolean; } & ComponentPropsWithoutRef; declare const EqualHeightElement: ({ name, as, children, placeholder, disable, ...props }: PropsWithChildren> & { forwardedref?: Ref; }) => import("react/jsx-runtime").JSX.Element | null; export default EqualHeightElement;