import type { Normalize } from '@prezly/slate-commons'; interface Parameters { withAttachmentPlaceholders: boolean; withContactPlaceholders: boolean; withCoveragePlaceholders: boolean; withImagePlaceholders: boolean; withInlineContactPlaceholders: boolean; withGalleryPlaceholders: boolean; withGalleryBookmarkPlaceholders: boolean; withEmbedPlaceholders: boolean; withMediaPlaceholders: boolean; withSocialPostPlaceholders: boolean; withStoryBookmarkPlaceholders: boolean; withStoryEmbedPlaceholders: boolean; withVideoPlaceholders: boolean; withWebBookmarkPlaceholders: boolean; } export declare function removeDisabledPlaceholders({ withAttachmentPlaceholders, withContactPlaceholders, withCoveragePlaceholders, withImagePlaceholders, withInlineContactPlaceholders, withGalleryPlaceholders, withGalleryBookmarkPlaceholders, withEmbedPlaceholders, withMediaPlaceholders, withSocialPostPlaceholders, withStoryBookmarkPlaceholders, withStoryEmbedPlaceholders, withVideoPlaceholders, withWebBookmarkPlaceholders, }: Parameters): Normalize; export {};