import { IdentifierType } from "types";
import { IdentifiersRegex, identifiersRegex } from "./regex";
export declare function checkIdentifierStringType(identifier: string, type: keyof typeof identifiersRegex): boolean;
export declare function parseIdentifier(identifier: string): {
    type: IdentifierType;
    value: string;
    regex: IdentifiersRegex;
} | null;
