import type { ESTree } from "meriyah";
import { SourceFile } from "../SourceFile.ts";
import type { Literal } from "../estree/types.ts";
/**
 * @description Search for Literal AST Node
 * @see https://github.com/estree/estree/blob/master/es5.md#literal
 * @example
 * "foobar"
 */
declare function validateNode(node: ESTree.Node): [boolean, any?];
declare function main(node: Literal<string>, options: {
    sourceFile: SourceFile;
}): void;
declare const _default: {
    name: string;
    validateNode: typeof validateNode;
    main: typeof main;
    breakOnMatch: boolean;
};
export default _default;
//# sourceMappingURL=isLiteral.d.ts.map