/**
 * Created by jayhamilton on 1/31/17.
 */
export declare const boardLayouts: ({
    id: number;
    boardInstanceId: number;
    title: string;
    checked: boolean;
    structure: string;
    rows: {
        columns: {
            styleClass: string;
        }[];
    }[];
    boardId?: undefined;
} | {
    id: number;
    boardId: number;
    title: string;
    checked: boolean;
    structure: string;
    rows: {
        columns: {
            styleClass: string;
        }[];
    }[];
    boardInstanceId?: undefined;
})[];
