import { Primitives } from "../src"; export declare class Product { readonly active: boolean; readonly name: string; constructor(active: boolean, name: string); toPrimitives(): Primitives; }