import OnesyStyle from './OnesyStyle'; export interface IPrefix { value?: any; arguments?: any; } export interface IOptionsSSR { all: boolean; } export interface IOptions { ssr?: IOptionsSSR; } declare function prefix(onesyStyle: OnesyStyle, options_?: IOptions): { methods: { method: (value_: { property: string; value: string; }) => IPrefix; }; remove: () => void; }; export default prefix;