import type { Options } from "prettier";
import { type Node } from "../parser";
export declare function getParserFromExt(ext: string): false | "babel-ts" | "babel" | "css" | "less" | "scss";
export declare function hasTagParser(tag: Node.Tag): boolean;
export declare function getTagParser(tag: Node.Tag, opts: Options): false | import("prettier").LiteralUnion<import("prettier").BuiltInParserName, string> | undefined;
