///
declare const meta: {
title: string;
component: (props: import("./CssBaseline.types").CssBaselineProps) => import("react").JSX.Element;
argTypes: {
children: {
control: {
disable: true;
};
};
};
};
export default meta;
/**
*
* Kickstart an elegant, consistent, and simple baseline to build upon.
*
* ### Global reset
* Similar to normalize.css, a collection of HTML element and attribute style-normalizations.
* Add to application root level.
*
* ```javascript
* import React from 'react';
* import { CssBaseline } from '@galaxy-ds/core';
* export default function MyApp() {
* return (
* <>
*
* //The rest of your application
* >
* );
* ```
*/
export declare const Default: {
args: {};
tags: string[];
render: (args: {
children?: import("react").ReactNode;
enableColorScheme?: boolean | undefined;
classes?: Partial> | undefined;
}) => import("react/jsx-runtime").JSX.Element;
};