import type { Plugin } from "posthtml";
import { PreventWindowsOptions } from "..";
export type PosthtmlOptions = {
    attrName: string;
    attrRemove: boolean;
};
declare const posthtml: (customPosthtmlOptions?: Partial<PosthtmlOptions>, preventWidowsOptions?: PreventWindowsOptions) => Plugin<unknown>;
export default posthtml;
