import { Account } from "../account/Account";
import { Channel } from "../channel/Channel";
/** App Metadata */
export type AppMetadata = {
    id: string;
    extensionId: string;
    iconDataUri: string;
    supportedChannels: Channel[];
    label: string;
    accounts?: Account[];
};
/**
 * @deprecated This type is deprecated. Please use AppMetadata instead.
 */
export type AppMetaData = AppMetadata;
