/// import { NameTypes } from "../../../types/resources/name"; import { NameOwner } from "gpdb-api-client"; import { RecorderCloseOptions } from "./types/handlers-types"; import { TermsAndConditions } from "../../hooks/useRecorderState"; import Pronunciation from "../../../types/resources/pronunciation"; import { InboundRelativeSource } from "./types/inbound-relative-source"; interface Props { name: string; type: NameTypes; owner?: NameOwner; onRecorderClose: (option?: RecorderCloseOptions) => void; onSaved?: (blob?: Blob) => void; termsAndConditions?: TermsAndConditions; pronunciation?: Pronunciation; relativeSource?: InboundRelativeSource; } declare const NewRecorder: ({ onRecorderClose, name, owner, type, termsAndConditions, onSaved, pronunciation, relativeSource, }: Props) => JSX.Element; export default NewRecorder;