import { Content } from "@benev/slate";
export declare class Tab {
    label: string;
    title: string;
    render: () => Content;
    constructor(label: string, title: string, render?: () => Content);
}
