/** * Indicates whether the attribute value is a Svelte interpolation. * * --- * * Example interpolation: * ``` * a(href="{ cat.id }") * ``` * * In this case `val` is `"{ cat.id }"`. * * --- * * @param val Value of tag attribute. * @returns `true` if `val` passes the svelte interpolation check, otherwise `false`. */ export declare function isSvelteInterpolation(val: string): boolean;