import { FC } from '@dineug/r-html';
import { ValuesType } from '../../../../internal-types';
export declare const Tab: {
readonly Indexes: "Indexes";
readonly SchemaSQL: "Schema SQL";
readonly GeneratorCode: "Code Generator";
};
export type Tab = ValuesType;
export type TablePropertiesTabsProps = {
value: Tab;
onChange: (value: Tab) => void;
};
declare const TablePropertiesTabs: FC;
export default TablePropertiesTabs;