/// <reference types="react" />
import { CSSObject, Theme } from '@emotion/react';
interface GlobalStylesPRops {
    styles?: (theme: Theme) => CSSObject;
}
declare const GlobalStyles: ({ styles }: GlobalStylesPRops) => JSX.Element;
export default GlobalStyles;
