import OnesyStyle from './OnesyStyle'; export interface IOptionsDom { unique?: boolean; } export interface IMakeClassName { value?: any; arguments?: any; version?: 'development' | 'production'; } export interface IOptions { production?: boolean; dom?: IOptionsDom; } declare function makeClassName(onesyStyle: OnesyStyle, options_?: IOptions): { methods: { method: (value_: { property: string; value: any; }) => IMakeClassName; }; remove: () => void; }; export default makeClassName;