export interface ParentButton { callback: () => void; style?: any; text: string; } /** * Branding options for the Edge login UI. */ export interface Branding { appId?: string; appName?: string; landingSceneText?: string; parentButton?: ParentButton; primaryLogo?: any; primaryLogoCallback?: () => void; }