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<typeof Tab>;
export type TablePropertiesTabsProps = {
    value: Tab;
    onChange: (value: Tab) => void;
};
declare const TablePropertiesTabs: FC<TablePropertiesTabsProps>;
export default TablePropertiesTabs;
