import React from "react"; import { Profile } from "../../models/Profile"; type Props = { profile: Profile | null; show: boolean; onHide: (shouldUpdate: boolean) => void; suffixTitle?: string; }; export declare const DeleteProfile: ({ profile, show, onHide, suffixTitle, }: Props) => React.JSX.Element; export {};