import type { RendererAppearance } from '../../ui/Renderer/types'; export declare const isFullWidthAppearance: (appearance: RendererAppearance) => appearance is "full-width"; export declare const isMaxWidthAppearance: (appearance: RendererAppearance) => appearance is "max"; export declare const isFullPageAppearance: (appearance: RendererAppearance) => appearance is "full-page"; export declare const isCommentAppearance: (appearance: RendererAppearance) => appearance is "comment"; export declare const isFullWidthOrFullPageAppearance: (appearance: RendererAppearance) => appearance is "full-page" | "full-width" | "max";