import OnesyStyleSheetManager from './OnesyStyleSheetManager';
import { TValue, IIds, IOptionsOnesyStyle, IOptionsOnesyTheme } from './interfaces';
export interface IMakeStyles {
    onesy_style_sheet_manager: OnesyStyleSheetManager;
    ids: IIds;
    add: (props?: any) => void;
    update: (props: any) => void;
    remove: () => void;
}
export interface IOptions {
    element?: Element;
    onesy_style?: IOptionsOnesyStyle;
    onesy_theme?: IOptionsOnesyTheme;
    response?: 'css' | 'json';
    response_json_property_version?: 'cammel' | 'kebab';
}
declare function inline(value_: TValue, props?: any, options_?: IOptions): any;
export default inline;
