import { ISourceProps } from "../../source-props/ISourceProps";
import { IPagesContent } from "../../source-props/SitePages/IPagesContent";
import { ICanvasContentOptions } from "./IModernPage";
/**
 * AS OF 2024-07-29:  You can now add EasyIcons object to source: ISourceProps so thumbnails use EasyIcons
 * https://github.com/fps-solutions/HubCon/issues/97
 */
export interface ISingleModernPageProps {
    page: IPagesContent;
    showCanvasContent1: boolean;
    imageStyle: string;
    source: ISourceProps;
    refreshId: string;
    canvasOptions: ICanvasContentOptions;
    searchText?: string;
    debugMode?: boolean;
}
export interface ISingleModernPageState {
    showPanelJSON: boolean;
    showThisItem: any;
    showPageDetails: boolean;
}
//# sourceMappingURL=ISingleModernPageProps.d.ts.map