import { Dispatch, SetStateAction } from 'react';
type TableNameFormProps = {
    name: string;
    setName: Dispatch<SetStateAction<string>>;
    description: string | undefined;
    setDescription: Dispatch<SetStateAction<string | undefined>>;
};
/**
 * React component for the naming a new table or view.
 * Renders UI to provide the name and description of a table or view.
 */
export default function TableNameForm(props: TableNameFormProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=TableNameForm.d.ts.map