/**
 * Represents an Account entity in the AppMetaData.
 */
export type Account = {
    id: string;
    name: string;
};
