import { type Atoms } from '../../../css/atoms'; interface ProfileDetailsActionProps extends Atoms { label: string; action?: () => void; icon: JSX.Element; url?: string; testId?: string; } export declare function ProfileDetailsAction({ action, icon, label, testId, url, ...props }: ProfileDetailsActionProps): import("react/jsx-runtime").JSX.Element; export {};