import * as React from "react"; type TextProps = { text?: string; } & React.HTMLAttributes; type ElementProps = { ref?: any; } & React.HTMLAttributes; export type BaseEditorTabProps = { variant?: string; labelProps?: TextProps; xButtonProps?: TextProps; selectedProps?: ElementProps; hoveringProps?: ElementProps; } & ElementProps; export type _fde5849e96847Props = BaseEditorTabProps; export const EditorTab: (props: BaseEditorTabProps) => React.ReactElement;