/// export * from './generated'; export * from './types'; export declare type PrimitiveProps = { object: T; } & Partial; export declare const Primitive: (props: PrimitiveProps) => JSX.Element; export declare type NewProps unknown> = Partial> & { object: T; args: ConstructorParameters; }; export declare const New: unknown>(props: NewProps) => JSX.Element;