export interface UserDefinedOptionsLifecyclePart {
    onLoad?: (() => void) | undefined;
    onStart?: (() => void) | undefined;
    onUpdate?: ((filename: string, oldVal: string, newVal: string) => void) | undefined;
    onEnd?: (() => void) | undefined;
}
