import { CommonStyle } from '../types';
import { Assign } from 'utility-types';
declare type StyleProp
= {
[P in keyof T]: Partial;
};
export declare class StyleSheet {
static create>(styles: T): T;
static flatten>(styles: C | C[] | void): C;
static resolve;
}>(value: T): T;
static compose, C2 extends Partial>(style1: C1, style2: C2): Assign;
static hairlineWidth: number;
static absoluteFill: Partial;
static absoluteFillObject: Partial;
}
export {};