import { Action } from '@ngrx/store';
export declare const LOCK_BOARD = "[board-ui] Lock";
export declare const UNLOCK_BOARD = "[board-ui] Unlock";
export declare class LockBoard implements Action {
    readonly type: string;
}
export declare class UnlockBoard implements Action {
    readonly type: string;
}
export declare type All = LockBoard | UnlockBoard;
