import * as React from "react"; import { Action } from "../../models/Action"; import { Profile } from "../../models/Profile"; export declare const searchActionsOfProfile: ({ profileId, }: { profileId: number | null; }) => import("@tanstack/react-query").UseQueryResult; type Props = { profileForEdit: Profile | null; show: boolean; onHide: (shouldUpdate: boolean) => void; suffixTitle?: string; }; export declare const ActionsOfProfile: ({ profileForEdit, show, onHide, suffixTitle, }: Props) => React.JSX.Element; export {};