import { IComment } from "./@types/types"; import { UUID } from "./@types/brands"; declare const resetComments: () => {}; declare const addComment: (val: IComment) => UUID; declare const getComment: (id: UUID) => IComment; export { resetComments, addComment, getComment };