import React, { type CSSProperties, type PropsWithChildren } from 'react';
import type { SystemCommonProps, SystemTypographyProps } from './constants';
import type { SxProp } from './sx';
import 'focus-visible';
export type BaseStylesProps = PropsWithChildren & {
    as?: React.ComponentType<any> | keyof JSX.IntrinsicElements;
    className?: string;
    style?: CSSProperties;
    color?: string;
} & SystemTypographyProps & SystemCommonProps & SxProp;
declare function BaseStyles(props: BaseStylesProps): React.JSX.Element;
export default BaseStyles;
//# sourceMappingURL=BaseStyles.d.ts.map