Svelte Guideline: Props — Export let for props. Description: Declare props with export let. Do: export let propName. Don't: Props without export. Good Example: export let count = 0. Bad Example: let count = 0. Severity: High. Docs: https://svelte.dev/docs/svelte-components#script-1-export-creates-a-component-prop.