import { TValue, IMethodResponse, IOptionsOnesyStyle, IOptionsOnesyTheme } from './interfaces'; export interface IOptions { element?: Element; name?: string; onesy_style?: IOptionsOnesyStyle; onesy_theme?: IOptionsOnesyTheme; } declare function pure(value_: TValue, options_?: IOptions): IMethodResponse; export default pure;