declare module '@salesforce/design-system-react/components/builder-header/utilities' {
import React from 'react';
type Props = {
/**
* Provide children of the types `` or `` to define the structure of the utilities section.
* ```
*
*
*
*
*
*
* ```
*/
children?: React.ReactNode,
};
function Component(props: Props): JSX.Element;
export default Component;
}