import React from 'react';
import { OnesyStyle } from '@onesy/style';
export interface IStyle extends Partial<OnesyStyle> {
    updateWithRerender?: (value: any) => OnesyStyle;
}
declare const Style: React.FC<IStyle>;
export default Style;
