--- export interface Props { type: 'known' | 'unknown'; percentage?: number; width?: string; } const { type, percentage, width } = Astro.props; ---