import { Style } from "css-to-react-native"; import { ImageStyle, TextStyle, ViewStyle } from "react-native"; export declare type PropertyGuard = (value: string, name: string) => PropertyFunction; export interface PropertyFunction { prop?: T; (value: string, name: string): Style; } interface OnlyOptions { values?: Array; units?: string[]; number?: boolean; color?: boolean; auto?: boolean; } export declare function noop(): PropertyFunction; export declare function only(options: Array | OnlyOptions): PropertyFunction; export {};