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