component Footer { outputs { select(payload: { value?: string | number | boolean | null; values?: Array; sourceEvent?: Event; [key: string]: string | number | boolean | null | object } | string | number | boolean | null) action(payload: { sourceEvent?: Event; [key: string]: string | number | boolean | null | object }) } props { size: string = "default" color: string = "primary" label: string = "Footer navigation" items: unknown[] = [] columns: number = 3 maxWidth: string = "compact" copyright: string = "" class: string = "" } view { } }