/** * Create a shallowly reactive props object. * * This allows us to update props on `rerender` without turning the user's * props into a deeply reactive `$state` proxy. * * @template {Record} Props * @param {Props} initialProps * @returns {[Props, (nextProps: Partial) => void]} */ export function createProps>(initialProps?: Props): [Props, (nextProps: Partial) => void]; //# sourceMappingURL=props.svelte.d.ts.map