import { type SxProps, type Theme } from "@mui/material"; import { type ProjectsRecord } from "./data/dsProjects"; type ProjectSelectProps = { className?: string; disabled?: boolean; id?: string; names?: { domain?: string; projectId?: string; name?: string; }; nullable?: boolean; readOnly?: boolean; required?: boolean; onChange?: (project: Partial | null) => void; defaultValue?: Partial | null; value?: Partial | null; label?: string; sx?: SxProps | undefined; report?: boolean; }; export declare function ProjectSelect({ className, disabled, id, names, onChange, readOnly, required, defaultValue, value, label, sx, report, }: ProjectSelectProps): import("react").JSX.Element; export {};