import PropTypes from 'prop-types'; export interface HeaderTitleCardProps { text: string; active: boolean; showEditButton?: boolean; showBadge?: boolean; onEditClick: () => void; className?: string; [props: string]: any; } export declare const HeaderTitleCard: { ({ text, active, showEditButton, showBadge, onEditClick, className, ...props }: HeaderTitleCardProps): import("@emotion/react/jsx-runtime").JSX.Element; propTypes: { text: PropTypes.Validator; active: PropTypes.Requireable; showEditButton: PropTypes.Requireable; showBadge: PropTypes.Requireable; onEditClick: PropTypes.Requireable<(...args: any[]) => any>; className: PropTypes.Requireable; }; };