import React, { CSSProperties, JSX, PropsWithChildren } from "react"; //#region src/BaseStyles.d.ts type BaseStylesProps = PropsWithChildren & { as?: React.ComponentType | keyof JSX.IntrinsicElements; className?: string; style?: CSSProperties; color?: string; }; declare function BaseStyles({ children, color, className, as: Component, style, ...rest }: BaseStylesProps): JSX.Element; //#endregion export { BaseStylesProps, BaseStyles as default };