import { type JSX } from 'react'; interface ProfileDetailsActionProps { label: string; action?: () => void; icon: JSX.Element; url?: string; testId?: string; } export declare function ProfileDetailsAction({ action, icon, label, testId, url, }: ProfileDetailsActionProps): JSX.Element; export {};