export interface DocumentTableLook { firstRow: boolean; lastRow: boolean; firstColumn: boolean; lastColumn: boolean; noHorizontalBand: boolean; noVerticalBand: boolean; } export declare function normalizeDocumentTableLook(value: unknown): DocumentTableLook | null; export declare function orderedDocumentTableLook(look: DocumentTableLook): DocumentTableLook; export declare function documentTableLookBitmask(look: DocumentTableLook): string; export declare function serializeDocumentTableLookDataset(look: DocumentTableLook): string; export declare function parseDocumentTableLookDataset(value: string | undefined | null): DocumentTableLook | null; export declare function parseDocxTblLookElement(element: Element): DocumentTableLook | null;