export interface IGoalStrategy {
    showPhotoIds: boolean;
    showSignatures: boolean;
    showScanHelper: boolean;
    equals(storedGoalInfo: IGoalStrategy): boolean;
    clone(): IGoalStrategy;
}
export declare class GoalStrategy implements IGoalStrategy {
    showPhotoIds: boolean;
    showSignatures: boolean;
    showScanHelper: boolean;
    constructor(params?: any);
    equals(goalSettings: GoalStrategy): boolean;
    clone(): GoalStrategy;
}
