import { Address, YcFile } from '@yourcause/common'; export interface AddOrgModalResponse { name: string; type: string; registrationId: string; phone: string; icon: YcFile; iconSrc: string; address: Address; } export interface AppManagerAction { icon: { icon: string; class: string; }; label: string; hidden: boolean; breakBefore: boolean; exec: () => any; }