import type { AstroIntegration } from 'astro';
type Options = {
    /**
     * Path to a custom CSS file to be included in the build.
     * Can be used to overwrite the default styles by redefining the CSS variables.
     *
     * @link https://ui.studiocms.dev/docs/guides/customization/
     */
    customCss?: string;
    /**
     * Disable CSS Generation and require manual addition of the global CSS
     *
     * @example
     * ```ts
     * import 'studiocms:ui/global-css';
     * ```
     */
    noInjectCSS?: boolean;
};
export default function integration(options?: Options): AstroIntegration;
export {};
