1 | import * as React from "react";
|
2 | import { ITheme } from "../theme";
|
3 |
|
4 | interface Config {
|
5 | color: string;
|
6 | bg: string;
|
7 | borderColor: string;
|
8 | placeholderColor: string;
|
9 | }
|
10 |
|
11 | type ConfigReturnType = { light: Config; dark: Config };
|
12 |
|
13 | export type CSSResetProps = {
|
14 | config?: (
|
15 | theme: ITheme,
|
16 | defaultConfig?: ConfigReturnType,
|
17 | ) => ConfigReturnType;
|
18 | };
|
19 |
|
20 | declare const CSSReset: React.FC<CSSResetProps>;
|
21 | export default CSSReset;
|