export default FloatingHelperContent; /** FloatingHelperContent */ declare function FloatingHelperContent({ title, body, actionText, onActionClick, actionTheme, image, appearance, footer, direction, }: { title: any; body: any; actionText: any; onActionClick: any; actionTheme?: string | undefined; image: any; appearance?: string | undefined; footer: any; direction?: string | undefined; }): React.JSX.Element; declare namespace FloatingHelperContent { let displayName: string; namespace propTypes { let title: PropTypes.Requireable; let body: PropTypes.Validator>; let actionText: PropTypes.Requireable; let actionTheme: PropTypes.Requireable; let footer: PropTypes.Requireable; let onActionClick: PropTypes.Requireable<(...args: any[]) => any>; let image: PropTypes.Requireable; let appearance: PropTypes.Requireable; let direction: PropTypes.Requireable; } } import React from 'react'; import PropTypes from 'prop-types'; //# sourceMappingURL=FloatingHelperContent.d.ts.map