import { MultilingualString } from "@omnia/fx-models"; export interface PowerAppBlockSettings { title: MultilingualString; powerAppUrl: string; sizeSettings: PowerAppBlockSizeSettings; themeParamKeys: PowerAppBlockThemeParamKeys; } export interface PowerAppBlockSizeSettings { auto: boolean; height: number; x: number; y: number; } export interface PowerAppBlockThemeParamKeys { backgroundColor: string; foregroundColor: string; textColor: string; }