/** * The function generates a list of CSS class names separated with a space for component identified by componentName based on provided props. * It accepts an optional className prop that will be included in the result if provided. All generated class names are prefixed with "pega-". * The function also accepts key-value pairs of props used to generate additional CSS classes. * @param componentName name of the component to be used as a root CSS class * @param classNameProp optional className prop which value will be copied to the result string * @param props optional props object used to generate additional CSS classes * @param props.key the key of the prop to be included in the CSS class * @param props.value the value of the prop to be appended to the CSS class * @returns a string of class names separated by a space */ declare const createClassName: (componentName: string, classNameProp?: string | undefined, props?: Record) => string; export default createClassName; //# sourceMappingURL=createClassName.d.ts.map