export declare const useCalculateHardLimit: (
/**
 * Element that stretches to 100% of the whole layout component
 */
wrapperElement: HTMLDivElement | null, 
/**
 * Element that directly hosts individual `ParticipantView` (or wrapper) elements
 */
hostElement: HTMLDivElement | null, limit?: "dynamic" | number) => {
    vertical: number | null;
    horizontal: number | null;
};
