export declare const SET_LEGACY = "PRIVATE_APP::SET_LEGACY";
export interface SetLegacyAction {
    readonly type: typeof SET_LEGACY;
    payload: boolean;
}
