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