import { Parser } from "prettier"; export declare const parsers: { html: Parser; vue: Parser; angular: Parser; }; export declare const options: { [K in keyof PrettierPluginOrganizeAttributesParserOptions]: any; }; export type PrettierPluginOrganizeAttributesParserOptions = { attributeGroups: string[]; attributeSort: "ASC" | "DESC" | "NONE"; attributeIgnoreCase: boolean; };