export declare type ExpressionMeta = { inComment: boolean; nestLevel: number; index: number; placeholder: string; array: boolean; valid: boolean; }; /** * Build out a temporary template. We replace interpolations with placeholders. * This allows us to ignore interpolations surrounded by CSS comments and track nesting level */ export default function (quasis: any, expressions: any[]): ExpressionMeta[];