import { Style } from './core'; export declare function combineStyles(...styles: (T | undefined | null | false)[]): T; export declare function conditionalStyle(condition: boolean, trueStyle: T, falseStyle?: T): T | undefined; export declare function responsiveStyle(small: T, medium?: T, large?: T): T;