import * as React from 'react'; export interface MenuContentProps extends React.HTMLProps { /** Items within group */ children?: React.ReactNode; /** Forwarded ref */ innerRef?: React.Ref; /** Height of the menu content */ menuHeight?: string; /** Maximum height of menu content */ maxMenuHeight?: string; /** Callback to return the height of the menu content */ getHeight?: (height: string) => void; } export declare const MenuContent: React.ForwardRefExoticComponent & React.RefAttributes>; //# sourceMappingURL=MenuContent.d.ts.map