import { ComponentPropsWithoutRef, FunctionComponent } from 'react';
interface ElasticHeightProps extends ComponentPropsWithoutRef<'div'> {
innerClassName?: string;
isExpanded?: boolean;
min?: number;
}
export declare const ElasticHeight: FunctionComponent<ElasticHeightProps>;
export {};