import { DentalPiece, Surface } from '../models/DentalPiece';
type TeethGroupProps = {
    teeth: DentalPiece[];
    onClickSurface?: (id: string, surface: Surface, mark: boolean) => void;
    onDiscardPiece?: (id: string) => void;
    disabled?: boolean;
};
declare const TeethGroup: ({ teeth, onClickSurface, onDiscardPiece, disabled }: TeethGroupProps) => import("react/jsx-runtime").JSX.Element;
export default TeethGroup;
