import type { CSS } from '@project44-manifest/react-styles';

export type ProviderElement = 'div';

export interface ProviderProps {
  /**
   * Theme aware style object
   */
  css?: CSS;
  /**
   * Whether to disable the baseline css.
   *
   * @default false;
   */
  disableCSSBaseline?: boolean;
  /**
   * The locale for your application as a [BCP 47](https://www.ietf.org/rfc/bcp/bcp47.txt) language code.
   * Defaults to the browser/OS language setting.
   *
   * @default 'en-US'
   */
  locale?: string;
}
