import * as React from "react"; import type { CustomizationProviderProps } from "./types"; /** * The customization provider can be used to wrap a Paste applications and customize the * look and feel of the components you are using. You can provide overrides to the entire * theme, supply custom breakpoints for responsive design, and customize tagged DOM * elements within each paste component with custom CSS. * * @param {*} { * baseTheme = 'default', * customBreakpoints, * elements, * theme, * disableAnimations = false, * ...props * } * @return {*} */ declare const CustomizationProvider: React.FC>; export { CustomizationProvider }; //# sourceMappingURL=CustomizationProvider.d.ts.map