/**
 * 2024-09-07:  Migrated from the same folder in fps-library-v2/banner/components/SingleHelpPage/interfaces...
 */
export type IHelpTableRow = any;
export interface IHelpTable {
    heading?: any;
    headers: any[];
    rows: IHelpTableRow[];
}
export interface IPageContent {
    header?: any;
    html1?: any;
    table?: IHelpTable;
    html2?: any;
    footer?: any;
}
export interface ISinglePageProps {
    showInfo: boolean;
    allLoaded: boolean;
    content: IPageContent;
}
//# sourceMappingURL=ISinglePageProps.d.ts.map