/// interface Props { loading: boolean; inEdit: boolean; closeEdit: () => void; saveMyInfo: () => void; openEdit: () => void; canEditCustomAttributes: boolean; isUnsavedChanges: boolean; makeChanges: (value: boolean) => void; } declare const Actions: ({ loading, inEdit, closeEdit, saveMyInfo, openEdit, canEditCustomAttributes, isUnsavedChanges, makeChanges }: Props) => JSX.Element; export default Actions;