import { GeometryProps } from '../types'; import { LayoutStyleProperties } from './transformLayoutStyleProperties'; export declare type ResizeMode = 'contain' | 'cover' | 'stretch' | 'center' | 'repeat' | 'none'; export declare type GeometryStyleProperties = { backgroundColor: string; backgroundImage: string | { uri: string; } | { default: string; }; backgroundSize: ResizeMode; fillStyleId?: string; }; export declare const transformGeometryStyleProperties: (property: "fills" | "backgrounds", style?: Partial, imageHash?: string) => GeometryProps;