export interface Context {
    worksheet: string;
    table: string;
}
export declare type ContextTypes = "worksheet" | "table";
