import type { CmsPageRow, CmsPageDescriptionRow } from '../../../../types/db/index.js'; export declare function createPage(data: any, context: any): Promise; export declare function hookBeforeInsertPageData(callback: (this: Record, ...args: [ data: any, connection: any ]) => void | Promise, priority?: number): void; export declare function hookAfterInsertPageData(callback: (this: Record, ...args: [ data: any, connection: any ]) => void | Promise, priority?: number): void; export declare function hookBeforeCreatePage(callback: (this: Record, ...args: [ data: any, context: any ]) => void | Promise, priority?: number): void; export declare function hookAfterCreatePage(callback: (this: Record, ...args: [ data: any, context: any ]) => void | Promise, priority?: number): void;