interface StyleObject { [key: string]: any; } declare const copyStyle: (style: StyleObject | null | undefined) => StyleObject | null | undefined; export { copyStyle };