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