import { ComponentPropsWithoutRef, ElementType, PropsWithChildren, Ref } from 'react'; import { Props as ElementProps } from './equal-height-element'; export interface ElementsProps extends Pick { id: string; height?: number; } export type Props = { as?: T; } & ComponentPropsWithoutRef; declare const EqualHeightHolder: ({ as, children, ...props }: PropsWithChildren> & { forwardedref?: Ref; }) => import("react/jsx-runtime").JSX.Element; export default EqualHeightHolder;