import type { AppConfigSet } from './AppConfigSet'; import type { CommonName } from './CommonName'; import type { CommonTimestampInteger } from './CommonTimestampInteger'; import type { CommonUserName } from './CommonUserName'; export declare type ConfigSnapshot = { name: CommonName; revision: number; appliedBy: CommonUserName; appliedAt: CommonTimestampInteger; archivedBy: CommonUserName; archivedAt: CommonTimestampInteger; config: AppConfigSet; applied?: boolean; };