/// import { NameOption } from "../FullNamesList"; import IFrontController from "../../../types/front-controller"; import { UserPermissions } from "../../../types/permissions"; interface Props { names: NameOption[]; controller: IFrontController; permissions?: UserPermissions; } declare const PronunciationsBlock: ({ names, controller, permissions, }: Props) => JSX.Element; export default PronunciationsBlock;