export type CreateTableViewWizardProps = {
    open: boolean;
    parentId: string;
    onCancel: () => void;
    onComplete: (newEntityId: string) => void;
};
/**
 * Wizard to create a Synapse table, view, or other table type.
 *
 * See the README.md in this folder for a visualization of the flowchart
 *
 * @param props
 * @constructor
 */
export default function CreateTableViewWizard(props: CreateTableViewWizardProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=CreateTableViewWizard.d.ts.map