import { AppModel } from '@xh/hoist/admin/AppModel'; /** * Generate a standardized filename for an Admin module grid export, without datestamp. */ export declare function exportFilename(moduleName: string): string; /** * Generate a standardized filename for an Admin module grid export, with current datestamp. * Returned as a closure to ensure current date is evaluated at export time. */ export declare function exportFilenameWithDate(moduleName: string): () => string; export declare function getAppModel(): T;