import { CustomTypes, ExtendedType } from 'slate';
type ElementType = ExtendedType<'Element', CustomTypes>['type'];
export interface WithTableOptions {
    blocks: {
        td: ElementType;
        th: ElementType;
        content: ElementType;
        tr: ElementType;
        table: ElementType;
        tbody: ElementType;
        tfoot?: ElementType;
        thead?: ElementType;
    };
}
export declare const DEFAULT_WITH_TABLE_OPTIONS: WithTableOptions;
export {};
