import { VELOCITY_AST } from './type'; type BlockConfig = Record; /** * @param str string to parse * @param blocks self define blocks, such as `#cms(1) hello #end` * @param ignoreSpace if set true, then ignore the newline trim. */ export declare const parse: (str: string, blocks?: BlockConfig, ignoreSpace?: boolean) => VELOCITY_AST[]; export {};