import { INPCGenerateProps, INPCDomainObject } from "../interfaces"; declare const functions: { generate: (props?: INPCGenerateProps) => INPCDomainObject; trait: () => string; desire: () => string; }; export default functions;