export declare const containsLiquidTag: (text: string) => boolean; export type LiquidTagAstTextNode = { type: "text"; value: string; }; export type LiquidTagAstTagNode = { type: "tag"; value: { type: string; url: string; options: Record; }; }; export declare const toLiquidTagAstTagNode: (text: string) => LiquidTagAstTagNode; export declare const parseLiquidTagAst: (text: string) => Array;