import type { Compiler, LoaderContext, RspackPluginInstance } from '@rspack/core' import type { UnistylesPluginOptions } from 'react-native-unistyles/plugin' export declare const BASE_REPACK_EXCLUDE_PATHS: Array interface ConstructorParams { ruleExcludePaths?: Array unistylesPluginOptions?: UnistylesPluginOptions } export declare class RepackUnistylePlugin implements RspackPluginInstance { private ruleExcludePaths private unistylesPluginOptions constructor({ ruleExcludePaths, unistylesPluginOptions }?: ConstructorParams) apply(compiler: Compiler): void } declare function unistylesLoader(this: LoaderContext, source: string): void export default unistylesLoader